rust: build: remove "protocol: rust: from doctests

It is added already by rust.doctest.

Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2025-09-19 12:16:25 +02:00
parent 75dbe618ac
commit f87a2e5c59
5 changed files with 0 additions and 5 deletions

View file

@ -47,6 +47,5 @@ bql_rs = declare_dependency(link_with: [_bql_rs],
# in a separate suite that is run by the "build" CI jobs rather than "check".
rust.doctest('rust-bql-rs-doctests',
_bql_rs,
protocol: 'rust',
dependencies: bql_rs,
suite: ['doc', 'rust'])

View file

@ -32,6 +32,5 @@ rust.test('rust-common-tests', _common_rs,
# in a separate suite that is run by the "build" CI jobs rather than "check".
rust.doctest('rust-common-doctests',
_common_rs,
protocol: 'rust',
dependencies: common_rs,
suite: ['doc', 'rust'])

View file

@ -48,6 +48,5 @@ migration_rs = declare_dependency(link_with: [_migration_rs],
# in a separate suite that is run by the "build" CI jobs rather than "check".
rust.doctest('rust-migration-rs-doctests',
_migration_rs,
protocol: 'rust',
dependencies: migration_rs,
suite: ['doc', 'rust'])

View file

@ -38,6 +38,5 @@ qom_rs = declare_dependency(link_with: [_qom_rs], dependencies: [qemu_macros, qo
# in a separate suite that is run by the "build" CI jobs rather than "check".
rust.doctest('rust-qom-rs-doctests',
_qom_rs,
protocol: 'rust',
dependencies: qom_rs,
suite: ['doc', 'rust'])

View file

@ -53,7 +53,6 @@ rust.test('rust-util-tests', _util_rs,
# in a separate suite that is run by the "build" CI jobs rather than "check".
rust.doctest('rust-util-rs-doctests',
_util_rs,
protocol: 'rust',
dependencies: util_rs,
suite: ['doc', 'rust']
)