mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-04-01 20:04:37 +00:00
tests: Add test for hotplug_size and hotplug_method
Add test for hotplug_size and hotplug_method. Signed-off-by: Hui Zhu <teawater@antfin.com>
This commit is contained in:
parent
e63f98182a
commit
4a7a2cff8c
14
src/main.rs
14
src/main.rs
@ -593,6 +593,20 @@ mod unit_tests {
|
||||
}"#,
|
||||
false,
|
||||
),
|
||||
(
|
||||
vec!["cloud-hypervisor", "--memory", "size=1G,hotplug_size=1G"],
|
||||
r#"{
|
||||
"memory": {"size": 1073741824, "hotplug_method": "Acpi", "hotplug_size": 1073741824}
|
||||
}"#,
|
||||
true,
|
||||
),
|
||||
(
|
||||
vec!["cloud-hypervisor", "--memory", "size=1G,hotplug_method=virtio-mem,hotplug_size=1G"],
|
||||
r#"{
|
||||
"memory": {"size": 1073741824, "hotplug_method": "VirtioMem", "hotplug_size": 1073741824}
|
||||
}"#,
|
||||
true,
|
||||
),
|
||||
]
|
||||
.iter()
|
||||
.for_each(|(cli, openapi, equal)| {
|
||||
|
Loading…
x
Reference in New Issue
Block a user