diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2025-09-08 12:50:00 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-09-17 19:00:57 +0200 |
| commit | d58fcd05ffc682fbad02cd8d0bee840cb7997e3e (patch) | |
| tree | 20b5f1ffe52bd6dd80a48418d5a56498b4cae06d /rust/meson.build | |
| parent | 966b1c302e1bab3b20a356f1a6678dd1bee5575c (diff) | |
| download | focaccia-qemu-d58fcd05ffc682fbad02cd8d0bee840cb7997e3e.tar.gz focaccia-qemu-d58fcd05ffc682fbad02cd8d0bee840cb7997e3e.zip | |
rust: repurpose qemu_api -> tests
The crate purpose is only to provide integration tests at this point, that can't easily be moved to a specific crate. It's also often a good practice to have a single integration test crate (see for ex https://github.com/rust-lang/cargo/issues/4867) Drop README.md, use docs/devel/rust.rst instead. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Link: https://lore.kernel.org/r/20250827104147.717203-20-marcandre.lureau@redhat.com Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/meson.build')
| -rw-r--r-- | rust/meson.build | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rust/meson.build b/rust/meson.build index 9f6a0b161d..bd9b9cb83e 100644 --- a/rust/meson.build +++ b/rust/meson.build @@ -18,8 +18,6 @@ quote_rs_native = dependency('quote-1-rs', native: true) syn_rs_native = dependency('syn-2-rs', native: true) proc_macro2_rs_native = dependency('proc-macro2-1-rs', native: true) -qemuutil_rs = qemuutil.partial_dependency(link_args: true, links: true) - genrs = [] subdir('common') @@ -32,7 +30,7 @@ subdir('qom') subdir('system') subdir('chardev') subdir('hw/core') -subdir('qemu-api') +subdir('tests') subdir('hw') |