[libvirt] [PATCH 5/5] tests: Add tests for guest use NUMA tuning

Osier Yang jyang at redhat.com
Thu May 5 09:38:30 UTC 2011


---
 .../qemuxml2argv-numa-membind.args                 |    4 +++
 .../qemuxml2argvdata/qemuxml2argv-numa-membind.xml |   28 ++++++++++++++++++++
 tests/qemuxml2argvtest.c                           |    2 +
 tests/qemuxml2xmltest.c                            |    2 +
 4 files changed, 36 insertions(+), 0 deletions(-)
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-numa-membind.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-numa-membind.xml

diff --git a/tests/qemuxml2argvdata/qemuxml2argv-numa-membind.args b/tests/qemuxml2argvdata/qemuxml2argv-numa-membind.args
new file mode 100644
index 0000000..64f3975
--- /dev/null
+++ b/tests/qemuxml2argvdata/qemuxml2argv-numa-membind.args
@@ -0,0 +1,4 @@
+LC_ALL=C PATH=/bin HOME=/home/test USER=test LOGNAME=test /usr/bin/numactl \
+--membind +0-4,8-12 /usr/bin/qemu -S -M pc -m 214 -smp 2 -nographic -monitor \
+unix:/tmp/test-monitor,server,nowait -no-acpi -boot c -hda \
+/dev/HostVG/QEMUGuest1 -net none -serial none -parallel none -usb
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-numa-membind.xml b/tests/qemuxml2argvdata/qemuxml2argv-numa-membind.xml
new file mode 100644
index 0000000..2df608d
--- /dev/null
+++ b/tests/qemuxml2argvdata/qemuxml2argv-numa-membind.xml
@@ -0,0 +1,28 @@
+<domain type='qemu'>
+  <name>QEMUGuest1</name>
+  <uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
+  <memory>219136</memory>
+  <currentMemory>219136</currentMemory>
+  <vcpu>2</vcpu>
+  <numatune>
+    <membind nodeset='+0-4,8-12'/>
+  </numatune>
+  <os>
+    <type arch='i686' machine='pc'>hvm</type>
+    <boot dev='hd'/>
+  </os>
+  <clock offset='utc'/>
+  <on_poweroff>destroy</on_poweroff>
+  <on_reboot>restart</on_reboot>
+  <on_crash>destroy</on_crash>
+  <devices>
+    <emulator>/usr/bin/qemu</emulator>
+    <disk type='block' device='disk'>
+      <source dev='/dev/HostVG/QEMUGuest1'/>
+      <target dev='hda' bus='ide'/>
+      <address type='drive' controller='0' bus='0' unit='0'/>
+    </disk>
+    <controller type='ide' index='0'/>
+    <memballoon model='virtio'/>
+  </devices>
+</domain>
diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c
index a7e4cc0..16926c3 100644
--- a/tests/qemuxml2argvtest.c
+++ b/tests/qemuxml2argvtest.c
@@ -480,6 +480,8 @@ mymain(void)
 
     DO_TEST("smp", false, QEMU_CAPS_SMP_TOPOLOGY);
 
+    DO_TEST("numa-membind", false, NONE);
+
     DO_TEST("cpu-topology1", false, QEMU_CAPS_SMP_TOPOLOGY);
     DO_TEST("cpu-topology2", false, QEMU_CAPS_SMP_TOPOLOGY);
     DO_TEST("cpu-topology3", false, NONE);
diff --git a/tests/qemuxml2xmltest.c b/tests/qemuxml2xmltest.c
index 5bfbcab..71640ea 100644
--- a/tests/qemuxml2xmltest.c
+++ b/tests/qemuxml2xmltest.c
@@ -180,6 +180,8 @@ mymain(void)
 
     DO_TEST("smp");
 
+    DO_TEST("numa-membind");
+
     /* These tests generate different XML */
     DO_TEST_DIFFERENT("balloon-device-auto");
     DO_TEST_DIFFERENT("channel-virtio-auto");
-- 
1.7.4




More information about the libvir-list mailing list