Re: [Autotest] Biweekly upstream qemu-kvm test report (using autotest + manual) - Week 28

2012-07-20 Thread Qingtang Zhou
* On 2012-07-20 22:52:21 +0800, lei yang (yanglei.f...@gmail.com) wrote: > Hi > > seems there is no virtio_console testing.which I have no one pass > and why some of the below cases is mannual, and they are not in the Because we have no guest agent test case in autotest now. though I'm working on

[PATCH] virt test: multicast: Correct multicast_guest.py script path

2012-06-11 Thread Qingtang Zhou
Signed-off-by: Qingtang Zhou --- client/virt/tests/multicast.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/virt/tests/multicast.py b/client/virt/tests/multicast.py index 13e3f0d..3fc1084 100644 --- a/client/virt/tests/multicast.py +++ b/client/virt/tests

Re: [PATCH] virt-test: support static ip address in framework

2011-12-19 Thread Qingtang Zhou
* On 2011-12-19 21:11:32 +0800, Amos Kong (ak...@redhat.com) wrote: > Sometime, we need to test with guest(s) which have static ip > address(es). > eg. No real/emulated DHCP server in test environment. > eg. Test with old image we don't want to change the net config. > eg. Test when DHCP exists pro

Re: [Autotest] [PATCH 1/3] KVM-Test: kickstart script: Add pre-installation script for dumping anaconda log

2011-07-06 Thread Qingtang Zhou
* On 2011-07-05 12:54:34 -0300, Lucas Meneghel Rodrigues (l...@redhat.com) wrote: > On Tue, 2011-06-28 at 17:44 +0800, Qingtang Zhou wrote: > > Anaconda log will help us to analyse failure of installation. > > Hi Qingtang, I have verified the code, have a couple of comments

[PATCH 3/3] KVM Test: Add get anaconda log config in config file

2011-06-28 Thread Qingtang Zhou
Signed-off-by: Qingtang Zhou --- client/tests/kvm/tests_base.cfg.sample |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/client/tests/kvm/tests_base.cfg.sample b/client/tests/kvm/tests_base.cfg.sample index 4db011d..0fefa3b 100644 --- a/client/tests/kvm

[PATCH 2/3] KVM-Test: unattended_install.py: Get anaconda log and save it to log file

2011-06-28 Thread Qingtang Zhou
This patch will save guest's anaconda log to 'anaconda.log' in debug directory. Signed-off-by: Qingtang Zhou --- client/tests/kvm/tests/unattended_install.py | 31 ++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/client/

[PATCH 1/3] KVM-Test: kickstart script: Add pre-installation script for dumping anaconda log

2011-06-28 Thread Qingtang Zhou
Anaconda log will help us to analyse failure of installation. Signed-off-by: Qingtang Zhou --- client/tests/kvm/unattended/Fedora-10.ks | 35 ++ client/tests/kvm/unattended/Fedora-11.ks | 35 ++ client/tests/kvm/unattended/Fedora-12.ks

[PATCH v2] KVM Test: kvm_monitor.py: Close socket explicitly if exception raised in __init__

2011-06-23 Thread Qingtang Zhou
monitor socket will be initiated at the beginning of '*Monitor.__init__', if exception occur in this function, socket will not be closed correctly. In this case, socket should be closed explicitly. Signed-off-by: Qingtang Zhou --- client/virt/kvm_monitor.py | 18 +

[PATCH] kVM Test: physical_resources_check: Update case and fix error

2011-06-22 Thread Qingtang Zhou
- update this case, make it easy to get failure from result. - fix some error in log message. - close session before exception raised. - update code style. Signed-off-by: Qingtang Zhou --- client/tests/kvm/tests/physical_resources_check.py | 178 +++- 1 files changed, 96

[PATCH] KVM Test: nicdriver_unload.py: Fix some failure whan running RHEL4.8 guest

2011-03-03 Thread Qingtang Zhou
1. readlink in RHEL4.8 doesn't have a '-e' parameter, replace it with '-f'. 2. nic driver parameter path in '/sys' is different, get it from config file. Signed-off-by: Qingtang Zhou --- client/tests/kvm/tests/nicdriver_unload.py | 13 ++--- cli

[PATCH] KVM Test: Introduce qmp_basic test for RHEL6 host

2011-01-17 Thread Qingtang Zhou
qmp feature provided with RHEL6 is different from qmp in qemu-kvm 0.13.*. introduce a new test for RHEL6. Signed-off-by: Qingtang Zhou --- client/tests/kvm/tests/qmp_basic_rhel6.py | 386 + client/tests/kvm/tests_base.cfg.sample|3 + 2 files changed, 389