- 22 10月, 2013 8 次提交
-
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 Lucas Meneghel Rodrigues 提交于
From time to time, people are forgetting the little PEP8 details, and we have to fix them. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 John Ferlan 提交于
Existing code didn't check for 'in shutdown' condition which led to odd timing issues in various tests where is_dead() was returning true during the "Trying to shutdown VM with shell command" path followed by code attempting a startup which would fail because you cannot start an already started guest. Rather than add 'in shutdown' to the list of things to check - I flipped the check to look for dead states and return true (per the comments). I also note that 'no state' was returning False previously which could have caused false positives. Since the list of checked states could grow over time, I added a check for all currently known states and just print a message if a state is not known. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Xu Tian 提交于
since qemu_iotests merged into tests/qemu_iotests, add param qemu_iotests_dir to set iotests root dir; And updated default git repo to qemu-kvm new repo; Signed-off-by: NXu Tian <xutian@redhat.com>
-
由 Eduardo Otubo 提交于
This commit sets the Qemu sandboxing to 'on' by default. It allows the user to run all tests using this feature to catch missing system calls and providing more feedback to the general security of Qemu. Signed-off-by: NEduardo Otubo <otubo@linux.vnet.ibm.com>
-
由 Feng Yang 提交于
Not first index is 0, so update bootindex to 0, if we want to boot from it firstly. Signed-off-by: NFeng Yang <fyang@redhat.com>
-
由 Feng Yang 提交于
In older code we did not update params for vm before creating it. So old VM is reused. So we will meet following error: 15:42:02 ERROR| Exception escaping from test: Traceback (most recent call last): File "/usr/code/autotest/client/shared/test.py", line 426, in _exec _call_test_function(self.execute, *p_args, **p_dargs) File "/usr/code/autotest/client/shared/test.py", line 853, in _call_test_function raise error.UnhandledTestFail(e) UnhandledTestFail: Unhandled VMImageMissingError: CD image file not found: '/tmp/test.iso' [context: (run_boot_from_device) --> creating 'virt-tests-vm1'] Traceback (most recent call last): File "/usr/code/autotest/client/shared/test.py", line 846, in _call_test_function return func(*args, **dargs) File "/usr/code/autotest/client/shared/test.py", line 299, in execute postprocess_profiled_run, args, dargs) File "/usr/code/autotest/client/shared/test.py", line 216, in _call_run_once *args, **dargs) File "/usr/code/autotest/client/shared/test.py", line 322, in run_once_profiling self.run_once(*args, **dargs) File "/usr/code/autotest/client/tests/virt/virt.py", line 139, in run_once run_func(self, params, env) File "/usr/code/autotest/client/shared/error.py", line 138, in new_fn return fn(*args, **kwargs) File "/usr/code/autotest/client/tests/virt/qemu/tests/boot_from_device.py", line 112, in run_boot_from_device vm.create() File "/usr/code/autotest/client/shared/error.py", line 138, in new_fn return fn(*args, **kwargs) File "/usr/code/autotest/client/tests/virt/virttest/qemu_vm.py", line 1769, in create raise virt_vm.VMImageMissingError(iso) VMImageMissingError: CD image file not found: '/tmp/test.iso' This patch could fix this. Signed-off-by: NFeng Yang <fyang@redhat.com>
-
- 21 10月, 2013 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
It makes up for a quicker default run, good for presentation purposes. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 18 10月, 2013 16 次提交
-
-
由 Chris Evich 提交于
* Update try...except...finally.. syntax to old-style. * Conformed parameter keys to match rest of test * Fix logging parameter format bug Signed-off-by: NChris Evich <cevich@redhat.com>
-
由 Chris Evich 提交于
Signed-off-by: NChris Evich <cevich@redhat.com>
-
由 Alex Jia 提交于
Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Alex Jia 提交于
Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Alex Jia 提交于
Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Alex Jia 提交于
Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Alex Jia 提交于
Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Alex Jia 提交于
cpulist is a list of physical CPU numbers. Its syntax is a comma separated list and a special markup using '-' and '^' (ex. '0-4', '0-3,^2') can also be allowed. The '-' denotes the range and the '^' denotes exclusive. The expression is sequentially evaluated, so "0-15,^8" is identical to "9-14,0-7,15" but not identical to "^8,0-15". Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Alex Jia 提交于
Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Alex Jia 提交于
Signed-off-by: NAlex Jia <ajia@redhat.com>
-
由 Tom Zhou 提交于
Signed-off-by: NTom Zhou <zhouqt@gmail.com>
-
由 Tom Zhou 提交于
Some particular Linux distrio, such as debian, uses a shell program called dash. Unfortunately, the dash program can't work with "dash -c source foobar" command. Hence let's use '/bin/bash' explicitly, instead of the ambiguous '/bin/sh' symbol link. Signed-off-by: NTom Zhou <zhouqt@gmail.com>
-
由 Tom Zhou 提交于
This type of installation is commonly used, remove the '@' before it. Also update the comment for it. Signed-off-by: NTom Zhou <zhouqt@gmail.com>
-
由 yangdongsheng 提交于
virt-libvirt: Add floppy test for virsh change-media
-
由 Li Yang 提交于
Signed-off-by: NLi Yang <liyang.fnst@cn.fujitsu.com>
-
由 Li Yang 提交于
When a guest is running, insert/update a file without source path with "--config", then shutdown/destroy guest, at this time, the guest cannot be started. Signed-off-by: NLi Yang <liyang.fnst@cn.fujitsu.com>
-
- 16 10月, 2013 12 次提交
-
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 Yang Feng 提交于
virt.tests: autotest.cpuflags test fix
-
由 Xu Tian 提交于
Add control file to shared.control and update compress command to compress virt dir to source tarball because autotest.cpuflags test requried it; Update compress result command to ignore core dump and crash file to avoid compress or scp failed; Signed-off-by: NXu Tian <xutian@redhat.com>
-
由 Yunping Zheng 提交于
Make file transfer support tcp, udp or both. Add netperf_udp burst test ignore errors when deleting the test file on host and guest. Signed-off-by: NYunping Zheng <yunzheng@redhat.com>
-
由 Yunping Zheng 提交于
This patch add some tests for multi queues. Signed-off-by: NYunping Zheng <yunzheng@redhat.com> Conflicts: tests/enable_mq.py
-
由 Yunping Zheng 提交于
Support a nic with msix vertors Signed-off-by: NYunping Zheng <yunzheng@redhat.com>
-
由 Yunping Zheng 提交于
Signed-off-by: NYunping Zheng <yunzheng@redhat.com> Conflicts: virttest/qemu_vm.py
-
由 Yunping Zheng 提交于
This patch make autotest support multiqueue Macvtap Signed-off-by: NYunping Zheng <yunzheng@redhat.com>
-
由 Eduardo Otubo 提交于
Adding new command line argument to "./run" script: "-s,--qemu_sandbox". It enables the Qemu command line argument "-sandbox on", running all tests with the system call filter turned on. Signed-off-by: NEduardo Otubo <otubo@linux.vnet.ibm.com>
-
- 14 10月, 2013 3 次提交
-
-
由 Li Yang 提交于
Signed-off-by: NLi Yang <liyang.fnst@cn.fujitsu.com>
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 Yu Mingfei 提交于
* Move test module to tests/src/virsh_cmd/interface * Remove useless blackslashes. Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-