blob: 43afe417dcdd552edc1a5824257a23f590ec7916 [file]
_common_cfg = run_command(rustc_args,
'--config-headers', config_host_h, files('Cargo.toml'),
capture: true, check: true).stdout().strip().splitlines()
_common_rs = cargo_ws.package('common').library(rust_args: _common_cfg)
cargo_ws.package('common').override_dependency(declare_dependency(link_with: _common_rs))
common_rs = declare_dependency(link_with: [_common_rs])
rust.test('rust-common-tests', _common_rs,
suite: ['unit', 'rust'])
# Doctests are essentially integration tests, so they need the same dependencies.
# Note that running them requires the object files for C code, so place them
# in a separate suite that is run by the "build" CI jobs rather than "check".
rust.doctest('rust-common-doctests',
_common_rs,
dependencies: common_rs,
suite: ['doc', 'rust'])