提交 79cb1c4b 编写于 作者: L Lucas Meneghel Rodrigues

Change references from 'KVM test object -> QEMU test object'

In order to be consistent with previous changes.
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
上级 5a059a9d
......@@ -15,7 +15,7 @@ def run_cpu_hotplug(test, params, env):
4) Try to bring them online by writing 1 to the 'online' file inside that dir
5) Run the CPU Hotplug test suite shipped with autotest inside guest
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -107,7 +107,7 @@ def run_enospc(test, params, env):
5) Continue paused guest
6) Repeat step 3~5 several times
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -15,7 +15,7 @@ def run_floppy(test, params, env):
4) Calculate md5sum value of a file and copy it into floppy.
5) Verify whether the md5sum does match.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -10,7 +10,7 @@ def run_getfd(test, params, env):
2) Pass file descriptors via getfd
3) Check if qemu process has a copy of the file descriptor
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -11,7 +11,7 @@ def run_hdparm(test, params, env):
3) Set/record parameters value of hard disk to high performance status.
4) Perform device/cache read timings then compare two results.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -23,7 +23,7 @@ def run_nic_hotplug(test, params, env):
topology changes (that is, devices get added and removed) may cause random
failures.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -15,7 +15,7 @@ def run_pci_hotplug(test, params, env):
5) Check whether the newly added PCI device works fine.
6) PCI delete the device, verify whether could remove the PCI device.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -13,7 +13,7 @@ def run_physical_resources_check(test, params, env):
to the VM (qemu command line)
3) Verify all MAC addresses for guest NICs
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -13,7 +13,7 @@ def run_qemu_iotests(test, params, env):
3) Run test for the file format detected
4) Report any errors found to autotest
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -10,7 +10,7 @@ def run_smbios_table(test, params, env):
1) Boot a guest with smbios options
2) verify if host bios options have been emulated
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -17,7 +17,7 @@ def run_sr_iov_hotplug(test, params, env):
7) Check whether the newly added PCI device works fine.
8) Delete the device, verify whether could remove the sr-iov device.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -12,7 +12,7 @@ def run_sr_iov_hotunplug(test, params, env):
3) Get the device id that want to unplug.
4) Delete the device, verify whether could remove the PCI device.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -21,7 +21,7 @@ def run_time_manage(test, params, env):
7) Print the drift values for all sessions
8) TODO: Validate if the drift value has to be within defined value
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -18,7 +18,7 @@ def run_timedrift(test, params, env):
If the drift after the rest period is higher than a user-specified value,
fail.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -13,7 +13,7 @@ def run_timedrift_with_migration(test, params, env):
4) Take a second time reading.
5) If the drift (in seconds) is higher than a user specified value, fail.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -13,7 +13,7 @@ def run_timedrift_with_reboot(test, params, env):
4) Take a second time reading.
5) If the drift (in seconds) is higher than a user specified value, fail.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -15,7 +15,7 @@ def run_timedrift_with_stop(test, params, env):
6) Take a second time reading.
7) If the drift (in seconds) is higher than a user specified value, fail.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -9,7 +9,7 @@ def run_unittest_kvmctl(test, params, env):
test case file to test various functions of the kvm kernel module.
The output of all unit tests can be found in the test result dir.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -15,7 +15,7 @@ def run_ethtool(test, params, env):
5) Check the return value.
6) Restore original configuration.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
......
......@@ -17,7 +17,7 @@ def run_fullscreen_setup(test, params, env):
The plan is to support remote-viewer at first place
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -11,7 +11,7 @@ def run_guest_test(test, params, env):
3) Wait for script execution to complete.
4) Pass/fail according to exit status of script.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -19,7 +19,7 @@ def run_jumbo(test, params, env):
9) Verify the path MTU.
10) Recover the MTU.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -11,7 +11,7 @@ def run_mac_change(test, params, env):
2) Set new mac in guest and regain new IP.
3) Re-log into guest with new MAC.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -14,7 +14,7 @@ def run_multicast(test, params, env):
4) Flood ping test with different size of packets.
5) Final ping test and check if lose packet.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -75,7 +75,7 @@ def run_netperf(test, params, env):
2) Prepare the test environment in server/client/host
3) Execute netperf tests, collect and analyze the results
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -10,7 +10,7 @@ def run_nic_promisc(test, params, env):
2) Repeatedly enable/disable promiscuous mode in guest.
3) Transfer file from host to guest, and from guest to host in the same time
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -13,7 +13,7 @@ def run_nicdriver_unload(test, params, env):
4) Multi-session TCP transfer on test interface.
5) Check whether the test interface should still work.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -17,7 +17,7 @@ def run_ping(test, params, env):
1) Flood ping the guest.
2) Check if the network is still usable.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -10,7 +10,7 @@ def run_pxe(test, params, env):
2) Wait for some seconds.
3) Check whether we could capture TFTP packets.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -186,7 +186,7 @@ def run_rv_connect(test, params, env):
The plan is to support remote-viewer at first place
@param test: KVM test object. @param params: Dictionary with the test parameters.
@param test: QEMU test object. @param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -938,7 +938,7 @@ def run_rv_copyandpaste(test, params, env):
text_to_test: In config defines the text to copy, and if it is numeric it
will copy that amount of textual data, which is generated by cb.py.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -10,7 +10,7 @@ def run_rv_disconnect(test, params, env):
"""
Tests disconnection of remote-viewer.
@param test: KVM test object. @param params: Dictionary with the test parameters.
@param test: QEMU test object. @param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -18,7 +18,7 @@ def run_rv_fullscreen(test, params, env):
Positive test: full_screen param = yes, verify guest res = client res
Negative test: full_screen param= no, verify guest res != client res
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -266,7 +266,7 @@ def run_rv_input(test, params, env):
Test for testing keyboard inputs through spice.
Test depends on rv_connect test.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -16,7 +16,7 @@ def run_rv_logging(test, params, env):
"""
Tests the logging of remote-viewer
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -12,7 +12,7 @@ def run_softlockup(test, params, env):
3) Run for a relatively long time length. ex: 12, 18 or 24 hours.
4) Output the test result and observe drift.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -11,7 +11,7 @@ def run_trans_hugepage(test, params, env):
1) Smoke test
2) Stress test
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -17,7 +17,7 @@ def run_trans_hugepage_defrag(test, params, env):
6) Set the khugepaged do defrag
7) Use libhugetlbfs to allocated huge page compare the value
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -10,7 +10,7 @@ def run_trans_hugepage_swapping(test, params, env):
KVM khugepage user side test:
1) Verify that the hugepages can be swapped in/out.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
@param env: Dictionary with the test environment.
"""
......
......@@ -112,7 +112,7 @@ class UnattendedInstallConfig(object):
"""
Sets class atributes from test parameters.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with test parameters.
"""
root_dir = data_dir.get_data_dir()
......@@ -791,7 +791,7 @@ def run_unattended_install(test, params, env):
1) Starts a VM with an appropriated setup to start an unattended OS install.
2) Wait until the install reports to the install watcher its end.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
......@@ -15,7 +15,7 @@ def run_vlan(test, params, env):
5) Test maximal plumb/unplumb vlans.
6) Recover the vlan config.
@param test: KVM test object.
@param test: QEMU test object.
@param params: Dictionary with the test parameters.
@param env: Dictionary with test environment.
"""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册