Skip to content

util/acct: implement a new hierarchical accounting system #398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
build: run doctest with new meson
Ensure that we generate doctest targets with the new Meson version. This
will test-run all Rust code in the documentation.

Signed-off-by: David Rheinsberg <[email protected]>
  • Loading branch information
dvdhrm committed May 9, 2025
commit 6277b849e8b9cfc95770cfb54eede0a546dca93b
8 changes: 8 additions & 0 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,14 @@ mod_rust.test(
suite: 'unit',
)

if meson.version().version_compare('>=1.8')
mod_rust.doctest(
'rbus-doctests',
rust_bus,
suite: 'unit',
)
endif

test_kwargs = {
'dependencies': dep_bus,
'install': use_tests,
Expand Down