projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a420dd
)
rust: tests: do not import bindings::*
author
Paolo Bonzini
<pbonzini@redhat.com>
Fri, 14 Feb 2025 11:10:33 +0000
(12:10 +0100)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Tue, 25 Feb 2025 15:18:11 +0000
(16:18 +0100)
Similar to the devices, spell the exact set of C functions that are
called directly.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
rust/qemu-api/tests/tests.rs
patch
|
blob
|
history
diff --git
a/rust/qemu-api/tests/tests.rs
b/rust/qemu-api/tests/tests.rs
index 92dbfb8a0c86fcf16b144990ffc1c2c684a20cd4..03569e4a44c43e13e47a96407bb7600537bd6298 100644
(file)
--- a/
rust/qemu-api/tests/tests.rs
+++ b/
rust/qemu-api/tests/tests.rs
@@
-8,13
+8,14
@@
use std::{
};
use qemu_api::{
- bindings::
*
,
+ bindings::
{module_call_init, module_init_type, object_new, object_unref, qdev_prop_bool}
,
c_str,
cell::{self, BqlCell},
declare_properties, define_property,
prelude::*,
qdev::{DeviceClass, DeviceImpl, DeviceState, Property, ResettablePhasesImpl},
qom::{ClassInitImpl, ObjectImpl, ParentField},
+ sysbus::SysBusDevice,
vmstate::VMStateDescription,
zeroable::Zeroable,
};