<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://linux-kvm.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Yzhou</id>
	<title>KVM - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://linux-kvm.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Yzhou"/>
	<link rel="alternate" type="text/html" href="https://linux-kvm.org/page/Special:Contributions/Yzhou"/>
	<updated>2026-04-21T10:46:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.5</generator>
	<entry>
		<id>https://linux-kvm.org/index.php?title=StableABI&amp;diff=2906</id>
		<title>StableABI</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=StableABI&amp;diff=2906"/>
		<updated>2010-03-02T05:58:32Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Stable Guest ABI =&lt;br /&gt;
&lt;br /&gt;
Allow guest virtual machines to be presented with the same ABI across QEMU upgrades.&lt;br /&gt;
&lt;br /&gt;
= Detailed =&lt;br /&gt;
== Why is it useful? ==&lt;br /&gt;
&lt;br /&gt;
Changing guest ABI can confuse or break guests.&lt;br /&gt;
&lt;br /&gt;
This is particularly relevant for Windows guests where a guest ABI change may require Windows installs to be reactivated. &lt;br /&gt;
&lt;br /&gt;
== How to run ==&lt;br /&gt;
&lt;br /&gt;
libvirt takes care of it.&lt;br /&gt;
&lt;br /&gt;
== How to test ==&lt;br /&gt;
&lt;br /&gt;
Requirement: At least one guest image installed before executing this case.&lt;br /&gt;
&lt;br /&gt;
   1)  Edit an existing guests configuration using virsh edit&lt;br /&gt;
   2) Set the machine attribute to pc e.g.&lt;br /&gt;
&lt;br /&gt;
                &amp;lt;os&amp;gt;&lt;br /&gt;
                  &amp;lt;type arch=&#039;x86_64&#039; machine=&#039;pc&#039;&amp;gt;hvm&amp;lt;/type&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   3) Check the newly saved configuration using virsh dumpxml&lt;br /&gt;
   4) Verify the machine attribute is now pc-0.11 e.g.&lt;br /&gt;
&lt;br /&gt;
                &amp;lt;os&amp;gt;&lt;br /&gt;
                  &amp;lt;type arch=&#039;x86_64&#039; machine=&#039;pc-0)11&#039;&amp;gt;hvm&amp;lt;/type&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   5) Start the guest and verify that it boots correctly as before.&lt;br /&gt;
&lt;br /&gt;
== Potential migration issues ==&lt;br /&gt;
== Backward/forward compatibility issues ==&lt;br /&gt;
== Specific issues with some releases ==&lt;br /&gt;
&lt;br /&gt;
= Test cases =&lt;br /&gt;
&lt;br /&gt;
= Links =&lt;br /&gt;
&lt;br /&gt;
For additional information, see [https://fedoraproject.org/wiki/Features/KVM_Stable_Guest_ABI Features/KVM Stable Guest ABI] and&lt;br /&gt;
[https://fedoraproject.org/wiki/Features/KVM_Stable_PCI_Addresses Features/KVM Stable PCI Addresses]&lt;br /&gt;
on the [https://fedoraproject.org/wiki/Fedora_Project_Wiki Fedora Project Wiki].&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2818</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2818"/>
		<updated>2010-01-25T05:25:25Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
* Integrate the following code into the framework:&lt;br /&gt;
&lt;br /&gt;
 #!/usr/bin/python&lt;br /&gt;
&lt;br /&gt;
 import sys, os, re, random, ctypes, time&lt;br /&gt;
&lt;br /&gt;
 tasks = sys.argv[1:]&lt;br /&gt;
&lt;br /&gt;
 threads = [int(t)&lt;br /&gt;
            for k in tasks&lt;br /&gt;
            for t in os.listdir(&#039;/proc/%s/task&#039; % (k,))]&lt;br /&gt;
&lt;br /&gt;
 cpus = [int(c[3:])&lt;br /&gt;
         for c in os.listdir(&#039;/sys/devices/system/cpu&#039;)&lt;br /&gt;
         if re.match(r&#039;cpu[0-9]+&#039;, c)]&lt;br /&gt;
&lt;br /&gt;
 rand = random.Random()&lt;br /&gt;
&lt;br /&gt;
 sched_setaffinity = ctypes.CDLL(&#039;libc.so.6&#039;).sched_setaffinity&lt;br /&gt;
&lt;br /&gt;
 while True:&lt;br /&gt;
     pid = rand.choice(threads)&lt;br /&gt;
     cpu = rand.choice(cpus)&lt;br /&gt;
     mask = 1 &amp;lt;&amp;lt; cpu&lt;br /&gt;
     sched_setaffinity(ctypes.c_int(pid), ctypes.c_size_t(4), &lt;br /&gt;
 ctypes.byref(ctypes.c_int(mask)))&lt;br /&gt;
     try:&lt;br /&gt;
         time.sleep(0.01)&lt;br /&gt;
     except:&lt;br /&gt;
         break&lt;br /&gt;
* get the serial console information (BeiJing QE)&lt;br /&gt;
* Random generated macaddress and ifname (BeiJing QE)&lt;br /&gt;
* Postcommand for qemu-img check (BeiJing QE)&lt;br /&gt;
&lt;br /&gt;
== Web Interface ==&lt;br /&gt;
&lt;br /&gt;
* Integrate Dror Russo&#039;s patches [Lucas]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
=== Client Side Test ===&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Lucas, DONE]&lt;br /&gt;
* pxe boot * net types [BeiJing QE]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [BeiJing QE]&lt;br /&gt;
* Multiple nics [BeiJing QE]&lt;br /&gt;
* multiple disks [BeiJing QE]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Extend pci_assignable to support other PCI devices (USB, video cards, TV card etc)&lt;br /&gt;
* Different CPU flags support [BeiJing QE]&lt;br /&gt;
* Integrate the kvm unit test into kvm-autoteset [BeiJing QE]&lt;br /&gt;
* further vlan [BeiJing QE]&lt;br /&gt;
* ethtool test [BeiJing QE]&lt;br /&gt;
* Jumbo Frame test [BeiJing QE]&lt;br /&gt;
* Promisc Mode Nic test [BeiJing QE]&lt;br /&gt;
* Guest nic bonding test [BeiJing QE]&lt;br /&gt;
* Nic driver load/unload test [BeiJing QE]&lt;br /&gt;
* Ping test [BeiJing QE]&lt;br /&gt;
* Multicast test [BeiJing QE]&lt;br /&gt;
* Use private bridge and dnsmasq to do the unattended installation [BeiJing QE]&lt;br /&gt;
* Passthrough the perf keys of run_autotest to autotest server [BeiJing QE]&lt;br /&gt;
&lt;br /&gt;
== Server Side Tests ==&lt;br /&gt;
&lt;br /&gt;
* Run netperf test between two guests [Yolkfull]&lt;br /&gt;
* Migration with/without workload(dbench,lmbench etc) [Yolkfull] [Patch Sent,need review]&lt;br /&gt;
* Register the virtual machine into autotest server and run benchmark through autotest server [BeiJing QE]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2714</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2714"/>
		<updated>2009-12-07T07:01:40Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
=== Client Side Test ===&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks [Feng Yang]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
&lt;br /&gt;
=== Server Side Tests ===&lt;br /&gt;
&lt;br /&gt;
* Run netperf test between two guests [Yolkfull]&lt;br /&gt;
* Migration with/without workload(dbench,lmbench etc) [Yolkfull] [Patch Sent,need review]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2695</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2695"/>
		<updated>2009-11-21T11:00:51Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
=== Client Side Test ===&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks [Feng Yang]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
&lt;br /&gt;
=== Server Side Tests ===&lt;br /&gt;
&lt;br /&gt;
* Run netperf test between two guests [Yolkfull]&lt;br /&gt;
* Migration with/without workload(dbench,lmbench etc) [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2633</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2633"/>
		<updated>2009-10-24T13:19:06Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
=== Client Side Test ===&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks [Feng Yang]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
&lt;br /&gt;
=== Server Side Tests ===&lt;br /&gt;
&lt;br /&gt;
* Run netperf test between two guests [Yolkfull]&lt;br /&gt;
* Migration with/without workload(dbench,lmbench etc) [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2593</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2593"/>
		<updated>2009-09-30T08:30:34Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
=== Client Side Test ===&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks [Feng Yang]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
* Guest_S4 test [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
=== Server Side Tests ===&lt;br /&gt;
&lt;br /&gt;
* Run netperf test between two guests [Yolkfull]&lt;br /&gt;
* Migration with/without workload(dbench,lmbench etc) [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2592</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2592"/>
		<updated>2009-09-30T08:29:51Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
=== Client Side Test ===&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks [Feng Yang]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
* Guest_S4 test[Yolkfull]&lt;br /&gt;
&lt;br /&gt;
=== Server Side Tests ===&lt;br /&gt;
&lt;br /&gt;
* Run netperf test between two guests [Yolkfull]&lt;br /&gt;
* Migration with/without workload(dbench,lmbench etc) [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2591</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2591"/>
		<updated>2009-09-30T08:22:00Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
=== Client Side Test ===&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks [Feng Yang]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
* Guest_S4 test[Yolkfull]&lt;br /&gt;
&lt;br /&gt;
=== Server Side Tests ===&lt;br /&gt;
&lt;br /&gt;
* Run server-side netperf test between two guests [Yolkfull]&lt;br /&gt;
* Server-side migration with/without workload(dbench,lmbench etc) [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2590</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2590"/>
		<updated>2009-09-30T08:15:12Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
 = Client-side =&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks [Feng Yang]&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
* Guest_S4 test[Yolkfull]&lt;br /&gt;
&lt;br /&gt;
 = Server-side =&lt;br /&gt;
&lt;br /&gt;
* Run server-side netperf test between two guests [Yolkfull]&lt;br /&gt;
* Server-side migration with/without workload(dbench,lmbench etc) [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2589</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2589"/>
		<updated>2009-09-30T07:49:33Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* kickstart installation support [Lucas] [Nearly DONE]&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO [jasowang]&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
* Different CPU flags support&lt;br /&gt;
* Guest_S4 [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* Please open bugs on the [[http://autotest.kernel.org/newticket autotest defect tracking system]]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2548</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2548"/>
		<updated>2009-09-01T08:29:37Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Verify MD5 sum of ISO image before starting a VM&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Enable multiple user controlled port redirections (with -redir)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement functions to translate VM ports and addresses (e.g. VM.get_port(), VM.get_address())&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Support TAP networking with a user specified MAC address for each NIC&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Add &amp;lt;tt&amp;gt;display&amp;lt;/tt&amp;gt; parameter to enable user control of the QEMU display method (VNC/SDL/nographic)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement VM.clone() -- to be used by tests that need to add new VMs by themselves&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* kickstart installation support&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* &amp;lt;s&amp;gt;Make sure ppm_utils.image_crop() handles bad input properly&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Enable tests to modify a VM&#039;s params (while it&#039;s down)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Make tests shorter by using small utility functions that fail a test and display a failure message&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Improve the stepmaker data naming system (e.g. name PPM files according to their MD5 sums)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement &amp;lt;tt&amp;gt;include&amp;lt;/tt&amp;gt; functionality in the config file parser&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement kvm_spawn.get_command_status_output() to make sending SSH commands easier&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Config file parser: enable selective modification of parameters based on regular expressions, e.g. mem.* ?= 256&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Support running user specified pre-job, post-job, pre-test and post-test scripts&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Make Step Editor accept a filename command line argument&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;When running step files, detect frozen (stuck) guests even in the presence of a blinking cursor&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Support running tests in parallel with multiple queues for each host [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Automatically convert PPM images in debug dirs to PNG format to save space&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Automatically assign a UUID to a VM (use the &#039;-uuid&#039; QEMU parameter). Once assigned, should be used in all dependent tests.&amp;lt;/s&amp;gt; [jasowang] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Automatically assign a MAC address to a NIC. Once assigned, should be used in all dependent tests.&amp;lt;/s&amp;gt; [jasowang] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Allow run_bg to track a child process&#039;s stdin and stderr even after the parent process has exited; achieved by merging run_bg with kvm_spawn&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* &amp;lt;s&amp;gt;Write a time drift test (pic/apic/pm_timer)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Write a test which adds VMs until one of them becomes unresponsive, and records the maximum number of VMs successfully started&amp;lt;/s&amp;gt; [Yolkfull] [ALREADY DONE]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* &amp;lt;s&amp;gt;s3 hibernation&amp;lt;/s&amp;gt; [Gleb] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;tap networking&amp;lt;/s&amp;gt; [jasowang] [DONE]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* &amp;lt;s&amp;gt;Run autotest tests inside Linux guest&amp;lt;/s&amp;gt; [Michael] [ALREADY DONE]&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
* Pass through NICs / VFs to guest [Yolkfull]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Goal -- get accepted into upstream autotest&amp;lt;/s&amp;gt; [DONE]&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Add module headers and docstrings&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* &amp;lt;s&amp;gt;Move Windows-setup iso images into the windows directory.&amp;lt;/s&amp;gt; [DONE]&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Document the kvm_install test in the &amp;quot;Tests&amp;quot; section of the wiki&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Step Maker/Step Editor: fix the GDK MemoryError problem (do not pass gtk.gdk.pixbuf_new_from_data() a 0x0 pixmap even if a ppm file contains one)&amp;lt;/s&amp;gt; [DONE]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2520</id>
		<title>User:Yzhou</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2520"/>
		<updated>2009-08-11T03:23:41Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Patches working on:&lt;br /&gt;
&lt;br /&gt;
1. params_verify [codes finished, debugging] &lt;br /&gt;
    Verify all parameters in KVM command line:&lt;br /&gt;
    1) Log into the guest&lt;br /&gt;
    2) Verify whether cpu counts ,memory size, nics&#039; model,&lt;br /&gt;
       count and drives&#039; format &amp;amp; count, drive_serial, UUID&lt;br /&gt;
    3) Verify all nic cards&#039; macaddr&lt;br /&gt;
&lt;br /&gt;
2. pci_hotplug [codes finished, debugging]&lt;br /&gt;
    Test pci devices&#039; hotplug&lt;br /&gt;
    1) pci_add a deivce (nic or storage)&lt;br /&gt;
    2) Compare &#039;info pci&#039; output&lt;br /&gt;
    3) Compare &#039;reference_cmd&#039; output&lt;br /&gt;
    4) Verify whether pci_model is shown in &#039;pci_find_cmd&#039;&lt;br /&gt;
    5) Check whether the newly added pci device works fine&lt;br /&gt;
    6) pci_del the device, verify whether could remove the pci device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. run autotest&#039;s netperf on two guests [codes finished, debugging]&lt;br /&gt;
    Run netperf2 on two guests:&lt;br /&gt;
    1) start two guests, one as client while the other is server&lt;br /&gt;
    2) run netserver on server guest using control.server&lt;br /&gt;
    3) run netperf on client guest using control.client&lt;br /&gt;
&lt;br /&gt;
4. framework problem&lt;br /&gt;
    1) kvm_preprocess.py to deal with multiple images ( create multiple  images and specify &#039;force_create_image&#039;)&lt;br /&gt;
    2) kvm_subprocess often create multiple process, reach limit connections of windows telnet&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2388</id>
		<title>User:Yzhou</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2388"/>
		<updated>2009-07-21T06:20:15Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: Patches yzhou is working on&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Patches working on:&lt;br /&gt;
&lt;br /&gt;
1. params_verify [codes finished, debugging] &lt;br /&gt;
    Verify all parameters in KVM command line:&lt;br /&gt;
    1) Log into the guest&lt;br /&gt;
    2) Verify whether cpu counts ,memory size, nics&#039; model,&lt;br /&gt;
       count and drives&#039; format &amp;amp; count, drive_serial, UUID&lt;br /&gt;
    3) Verify all nic cards&#039; macaddr&lt;br /&gt;
&lt;br /&gt;
2. pci_hotplug [codes finished, debugging]&lt;br /&gt;
    Test pci devices&#039; hotplug&lt;br /&gt;
    1) pci_add a deivce (nic or storage)&lt;br /&gt;
    2) Compare &#039;info pci&#039; output&lt;br /&gt;
    3) Compare &#039;reference_cmd&#039; output&lt;br /&gt;
    4) Verify whether pci_model is shown in &#039;pci_find_cmd&#039;&lt;br /&gt;
    5) Check whether the newly added pci device works fine&lt;br /&gt;
    6) pci_del the device, verify whether could remove the pci device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. run autotest&#039;s netperf on two guests [codes finished, debugging]&lt;br /&gt;
    Run netperf2 on two guests:&lt;br /&gt;
    1) start two guests, one as client while the other is server&lt;br /&gt;
    2) run netserver on server guest using control.server&lt;br /&gt;
    3) run netperf on client guest using control.client&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2387</id>
		<title>User:Yzhou</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2387"/>
		<updated>2009-07-21T06:03:16Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: Patches that yzhou is working on&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Patches working on:&lt;br /&gt;
&lt;br /&gt;
1. params_verify&lt;br /&gt;
    Verify all parameters in KVM command line:&lt;br /&gt;
    1) Log into the guest&lt;br /&gt;
    2) Verify whether cpu counts ,memory size, nics&#039; model,&lt;br /&gt;
       count and drives&#039; format &amp;amp; count, drive_serial, UUID&lt;br /&gt;
    3) Verify all nic cards&#039; macaddr&lt;br /&gt;
&lt;br /&gt;
2. pci_hotplug&lt;br /&gt;
    Test pci devices&#039; hotplug&lt;br /&gt;
    1) pci_add a deivce (nic or storage)&lt;br /&gt;
    2) Compare &#039;info pci&#039; output&lt;br /&gt;
    3) Compare &#039;reference_cmd&#039; output&lt;br /&gt;
    4) Verify whether pci_model is shown in &#039;pci_find_cmd&#039;&lt;br /&gt;
    5) Check whether the newly added pci device works fine&lt;br /&gt;
    6) pci_del the device, verify whether could remove the pci device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. run autotest&#039;s netperf on two guests&lt;br /&gt;
    Run netperf2 on two guests:&lt;br /&gt;
    1) start two guests, one as client while the other is server&lt;br /&gt;
    2) run netserver on server guest using control.server&lt;br /&gt;
    3) run netperf on client guest using control.client&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2386</id>
		<title>User:Yzhou</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=User:Yzhou&amp;diff=2386"/>
		<updated>2009-07-21T05:24:07Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: Status&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Patches working on:&lt;br /&gt;
&lt;br /&gt;
1) params_verify&lt;br /&gt;
&lt;br /&gt;
2) pci_hotplug&lt;br /&gt;
&lt;br /&gt;
3) run autotest&#039;s netperf on two guests&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2371</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2371"/>
		<updated>2009-07-07T05:44:15Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Verify MD5 sum of ISO image before starting a VM&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Enable multiple user controlled port redirections (with -redir)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement functions to translate VM ports and addresses (e.g. VM.get_port(), VM.get_address())&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Support TAP networking with a user specified MAC address for each NIC [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Add &amp;lt;tt&amp;gt;display&amp;lt;/tt&amp;gt; parameter to enable user control of the QEMU display method (VNC/SDL/nographic)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement VM.clone() -- to be used by tests that need to add new VMs by themselves&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* kickstart installation support&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* &amp;lt;s&amp;gt;Make sure ppm_utils.image_crop() handles bad input properly&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Enable tests to modify a VM&#039;s params (while it&#039;s down) [Michael]&lt;br /&gt;
* Make tests shorter by using small utility functions that fail a test and display a failure message [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Improve the stepmaker data naming system (e.g. name PPM files according to their MD5 sums)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement &amp;lt;tt&amp;gt;include&amp;lt;/tt&amp;gt; functionality in the config file parser&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement kvm_spawn.get_command_status_output() to make sending SSH commands easier&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Config file parser: enable selective modification of parameters based on regular expressions, e.g. mem.* ?= 256 [Michael]&lt;br /&gt;
* Support running user specified pre-job, post-job, pre-test and post-test scripts [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Make Step Editor accept a filename command line argument&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;When running step files, detect frozen (stuck) guests even in the presence of a blinking cursor&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Support running tests in parallel with multiple queues for each host [Michael]&lt;br /&gt;
* Automatically convert PPM images in debug dirs to PNG format to save space [Michael]&lt;br /&gt;
* Automatically assign a UUID to a VM (use the &#039;-uuid&#039; QEMU parameter). Once assigned, should be used in all dependent tests. [jasowang]&lt;br /&gt;
* Automatically assign a MAC address to a NIC. Once assigned, should be used in all dependent tests. [jasowang]&lt;br /&gt;
* &amp;lt;s&amp;gt;Allow run_bg to track a child process&#039;s stdin and stderr even after the parent process has exited; achieved by merging run_bg with kvm_spawn&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang] [NEEDS MORE WORK]&lt;br /&gt;
* Write a time drift test (pic/apic/pm_timer)&lt;br /&gt;
* &amp;lt;s&amp;gt;Write a test which adds VMs until one of them becomes unresponsive, and records the maximum number of VMs successfully started&amp;lt;/s&amp;gt; [Yolkfull] [ALREADY DONE]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* &amp;lt;s&amp;gt;s3 hibernation&amp;lt;/s&amp;gt; [Gleb] [DONE]&lt;br /&gt;
* tap networking [jasowang]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* &amp;lt;s&amp;gt;Run autotest tests inside Linux guest&amp;lt;/s&amp;gt; [Michael] [ALREADY DONE]&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example) [Yolkfull]&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives) [Yolkfull]&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Goal -- get accepted into upstream autotest&amp;lt;/s&amp;gt; [DONE]&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Add module headers and docstrings [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* &amp;lt;s&amp;gt;Move Windows-setup iso images into the windows directory.&amp;lt;/s&amp;gt; [DONE]&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Document the kvm_install test in the &amp;quot;Tests&amp;quot; section of the wiki&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Step Maker/Step Editor: fix the GDK MemoryError problem (do not pass gtk.gdk.pixbuf_new_from_data() a 0x0 pixmap even if a ppm file contains one)&amp;lt;/s&amp;gt; [DONE]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2357</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2357"/>
		<updated>2009-06-30T14:33:11Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Verify MD5 sum of ISO image before starting a VM&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Enable multiple user controlled port redirections (with -redir)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement functions to translate VM ports and addresses (e.g. VM.get_port(), VM.get_address())&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Support TAP networking with a user specified MAC address for each NIC [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Add &amp;lt;tt&amp;gt;display&amp;lt;/tt&amp;gt; parameter to enable user control of the QEMU display method (VNC/SDL/nographic)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Implement VM.clone() -- to be used by tests that need to add new VMs by themselves [Michael]&lt;br /&gt;
* kickstart installation support&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* &amp;lt;s&amp;gt;Make sure ppm_utils.image_crop() handles bad input properly&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Enable tests to modify a VM&#039;s params (while it&#039;s down) [Michael]&lt;br /&gt;
* Make tests shorter by using small utility functions that fail a test and display a failure message [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Improve the stepmaker data naming system (e.g. name PPM files according to their MD5 sums)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement &amp;lt;tt&amp;gt;include&amp;lt;/tt&amp;gt; functionality in the config file parser&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement kvm_spawn.get_command_status_output() to make sending SSH commands easier&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Config file parser: enable selective modification of parameters based on regular expressions, e.g. mem.* ?= 256 [Michael]&lt;br /&gt;
* Support running user specified pre-job, post-job, pre-test and post-test scripts [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Make Step Editor accept a filename command line argument&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;When running step files, detect frozen (stuck) guests even in the presence of a blinking cursor&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Support running tests in parallel with multiple queues for each host [Michael]&lt;br /&gt;
* Automatically convert PPM images in debug dirs to PNG format to save space [Michael]&lt;br /&gt;
* Automatically assign a UUID to a VM (use the &#039;-uuid&#039; QEMU parameter). Once assigned, should be used in all dependent tests. [jasowang]&lt;br /&gt;
* Automatically assign a MAC address to a NIC. Once assigned, should be used in all dependent tests. [jasowang]&lt;br /&gt;
* &amp;lt;s&amp;gt;Allow run_bg to track a child process&#039;s stdin and stderr even after the parent process has exited; achieved by merging run_bg with kvm_spawn&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [Yolkfull]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang]&lt;br /&gt;
* Write a time drift test (pic/apic/pm_timer)&lt;br /&gt;
* &amp;lt;s&amp;gt;Write a test which adds VMs until one of them becomes unresponsive, and records the maximum number of VMs successfully started&amp;lt;/s&amp;gt; [Yolkfull] [ALREADY DONE]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Yolkfull]&lt;br /&gt;
* pci block hot plug [Yolkfull]&lt;br /&gt;
* &amp;lt;s&amp;gt;s3 hibernation&amp;lt;/s&amp;gt; [Gleb] [DONE]&lt;br /&gt;
* tap networking [jasowang]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* &amp;lt;s&amp;gt;Run autotest tests inside Linux guest&amp;lt;/s&amp;gt; [Michael] [ALREADY DONE]&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example)&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives)&lt;br /&gt;
* Test block device cancellation path using device mapper to generate errors ( after we had a crash in de_write_dma_cb)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Goal -- get accepted into upstream autotest&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Add module headers and docstrings [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* &amp;lt;s&amp;gt;Move Windows-setup iso images into the windows directory.&amp;lt;/s&amp;gt; [DONE]&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
* Document the kvm_install test in the &amp;quot;Tests&amp;quot; section of the wiki&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Step Maker/Step Editor: fix the GDK MemoryError problem (do not pass gtk.gdk.pixbuf_new_from_data() a 0x0 pixmap even if a ppm file contains one)&amp;lt;/s&amp;gt; [DONE]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
	<entry>
		<id>https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2347</id>
		<title>KVM-Autotest/TODO</title>
		<link rel="alternate" type="text/html" href="https://linux-kvm.org/index.php?title=KVM-Autotest/TODO&amp;diff=2347"/>
		<updated>2009-06-23T08:27:36Z</updated>

		<summary type="html">&lt;p&gt;Yzhou: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KVM-Autotest To-Do list =&lt;br /&gt;
&lt;br /&gt;
== Framework ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Verify MD5 sum of ISO image before starting a VM&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Enable multiple user controlled port redirections (with -redir)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement functions to translate VM ports and addresses (e.g. VM.get_port(), VM.get_address())&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Support TAP networking with a user specified MAC address for each NIC [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Add &amp;lt;tt&amp;gt;display&amp;lt;/tt&amp;gt; parameter to enable user control of the QEMU display method (VNC/SDL/nographic)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Implement VM.clone() -- to be used by tests that need to add new VMs by themselves [Michael]&lt;br /&gt;
* kickstart installation support&lt;br /&gt;
* kvm-autotest auto resolve qemu-kvm backtraces&lt;br /&gt;
* &amp;lt;s&amp;gt;Make sure ppm_utils.image_crop() handles bad input properly&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Enable tests to modify a VM&#039;s params (while it&#039;s down) [Michael]&lt;br /&gt;
* Make tests shorter by using small utility functions that fail a test and display a failure message [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Improve the stepmaker data naming system (e.g. name PPM files according to their MD5 sums)&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Redirect guest monitor to serial and capture guest error messages written to console. Log the errors and also scan for specific problems (e.g. oops)&lt;br /&gt;
* Support an &amp;quot;expected to fail&amp;quot; param (at least in our html report)&lt;br /&gt;
* Log a gdb-backtrace for tests (executables) which generate a core dump file.&lt;br /&gt;
* Enable &amp;quot;guest-load&amp;quot; for a VMs before/while tests are running (e.g. migration of a VM, while a movie is playing on it) [Michael]&lt;br /&gt;
* Add support for kvm-trace.&lt;br /&gt;
* Fail upon indentation/white-space problems in the configuration file&lt;br /&gt;
* Add a way to shutdown the VMs when the whole job completes (compared to doing nothing or shutting-down after every test) [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement &amp;lt;tt&amp;gt;include&amp;lt;/tt&amp;gt; functionality in the config file parser&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;Implement kvm_spawn.get_command_status_output() to make sending SSH commands easier&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Config file parser: enable selective modification of parameters based on regular expressions, e.g. mem.* ?= 256 [Michael]&lt;br /&gt;
* Support running user specified pre-job, post-job, pre-test and post-test scripts [Michael]&lt;br /&gt;
* &amp;lt;s&amp;gt;Make Step Editor accept a filename command line argument&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* &amp;lt;s&amp;gt;When running step files, detect frozen (stuck) guests even in the presence of a blinking cursor&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
* Support running tests in parallel with multiple queues for each host [Michael]&lt;br /&gt;
* Automatically convert PPM images in debug dirs to PNG format to save space [Michael]&lt;br /&gt;
* Automatically assign a UUID to a VM (use the &#039;-uuid&#039; QEMU parameter). Once assigned, should be used in all dependent tests. [jasowang]&lt;br /&gt;
* Automatically assign a MAC address to a NIC. Once assigned, should be used in all dependent tests. [jasowang]&lt;br /&gt;
* &amp;lt;s&amp;gt;Allow run_bg to track a child process&#039;s stdin and stderr even after the parent process has exited; achieved by merging run_bg with kvm_spawn&amp;lt;/s&amp;gt; [Michael] [DONE]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tests ==&lt;br /&gt;
&lt;br /&gt;
* Find out how to use Autotest&#039;s netperf test with guests [jasowang]&lt;br /&gt;
* If needed, write a netperf/iperf test [jasowang]&lt;br /&gt;
* Write a time drift test (pic/apic/pm_timer)&lt;br /&gt;
* Write a test which adds VMs until one of them becomes unresponsive, and records the maximum number of VMs successfully started. [Yolkfull] [ALREADY DONE]&lt;br /&gt;
* cpu hotplug [Glauber]&lt;br /&gt;
* pci net hot plug [Glauber]&lt;br /&gt;
* pci block hot plug [Glauber]&lt;br /&gt;
* &amp;lt;s&amp;gt;s3 hibernation&amp;lt;/s&amp;gt; [Gleb] [DONE]&lt;br /&gt;
* tap networking [jasowang]&lt;br /&gt;
* pxe boot * net types [jasowang]&lt;br /&gt;
* qcow1, qcow2, vmdk, vhd&lt;br /&gt;
* qcow2 internal snapshots&lt;br /&gt;
* &amp;lt;s&amp;gt;Run autotest tests inside Linux guest&amp;lt;/s&amp;gt; [Michael] [ALREADY DONE]&lt;br /&gt;
* Further migration [jasowang]&lt;br /&gt;
* Multiple nics [jasowang]&lt;br /&gt;
* multiple disks&lt;br /&gt;
* ksm [jasowang, jzupka, ldoktor]&lt;br /&gt;
* -vga stg, nographics&lt;br /&gt;
* kvm unit-tests&lt;br /&gt;
* Add unattended guest installations (using kickstart or answer-files) [jasowang]&lt;br /&gt;
* kvm_install -- keep src and build directories under &amp;lt;kvm_autotest_root&amp;gt; instead of under kvm_runtest_2.&lt;br /&gt;
* Stable tsc test - http://people.redhat.com/mingo/time-warp-test/MINI-HOWTO&lt;br /&gt;
* Guest installation with pv-block device/driver (for both windows and Linux)&lt;br /&gt;
* savevm test [jasowang]&lt;br /&gt;
* Guests with large page support [jzupka, ldoktor]&lt;br /&gt;
* Verify SMBIOS/DMI data (UUID, for example)&lt;br /&gt;
* Disk serial number (for IDE, SCSI, VirtIO drives)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
* Goal -- get accepted into upstream autotest&lt;br /&gt;
* Add docstrings to all functions that still lack them, including the ones in stepmaker.py, stepeditor.py and kvm_tests.py [Michael]&lt;br /&gt;
* Add module headers and docstrings [Michael]&lt;br /&gt;
* Document the setupssh.iso and setuptelnet.iso creation procedures in the wiki&lt;br /&gt;
* Rename all Windows ISOs currently used to their official MSDN names&lt;br /&gt;
* &amp;lt;s&amp;gt;Move Windows-setup iso images into the windows directory.&amp;lt;/s&amp;gt; [DONE]&lt;br /&gt;
* Share all the stepmaker data somehow so other people can debug stepfiles&lt;br /&gt;
* Fill the sections &amp;quot;Working with step files&amp;quot; and &amp;quot;Step file creation tips&amp;quot; in the wiki [Michael]&lt;br /&gt;
* Document the kvm_install test in the &amp;quot;Tests&amp;quot; section of the wiki&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;s&amp;gt;Step Maker/Step Editor: fix the GDK MemoryError problem (do not pass gtk.gdk.pixbuf_new_from_data() a 0x0 pixmap even if a ppm file contains one)&amp;lt;/s&amp;gt; [DONE]&lt;/div&gt;</summary>
		<author><name>Yzhou</name></author>
	</entry>
</feed>