- 06 7月, 2013 2 次提交
-
-
由 Qingtang Zhou 提交于
Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Merge autotest and virttest cgroup_utils library
-
- 05 7月, 2013 7 次提交
-
-
由 Yiqiao Pu 提交于
After we kill the previous guest. We still need wait the command line finish in the last guest. Also need send the die() command in the session for the last vm. Signed-off-by: NYiqiao Pu <ypu@redhat.com>
-
由 Yiqiao Pu 提交于
Update the query_regex for check KSM status for RHEL 5 host. The old one is out of date, and can not work any more. Signed-off-by: NYiqiao Pu <ypu@redhat.com>
-
由 Qingtang Zhou 提交于
Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Qingtang Zhou 提交于
Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Cleber Rosa 提交于
The JeOS image itself has no wget preinstalled, and other images that could be used with this may share the same characteristic. So, use plain python (and ugly command line) to download the installer script. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Jiří Župka 提交于
Replace templates.subtitution by eval in Cartesian config. It allows use basic python expression in configuration code. Speed is almost same as with tempaltes.subtitution. Example: cfg: mem = 1000 real_mem = ${float(mem) * 0.7}M output: mem = 1000 real_mem = 700M Signed-off-by: NJiří Župka <jzupka@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 04 7月, 2013 8 次提交
-
-
由 yangdongsheng 提交于
Fix the context_pattern in get_context_from_str method. The old pattern will not match the '_' in context such as 'svirt_image_t'. utils_selinux_unittest: replace assertIn with assertTrue. Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com>
-
由 yangdongsheng 提交于
Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com>
-
由 yangdongsheng 提交于
Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com> Adapt all virsh.start() to new @return. Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com>
-
由 Lukáš Doktor 提交于
qemu.test: make block_stream test work with qmp monitor
-
由 Yang Feng 提交于
qemu: Minor fixes for qemu test cases
-
由 Xu Tian 提交于
Signed-off-by: NXu Tian <xutian@redhat.com>
-
由 Xu Tian 提交于
Fix qemu-img create snapshot file failed when image format is raw Corrected block stream command in human monitor (block-stream -> block_stream) changes from v1: Removed configuration to set QMP as default monitor Signed-off-by: NXu Tian <xutian@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
virt: repair Cart config unittest test data.
-
- 03 7月, 2013 5 次提交
-
-
由 Jiří Župka 提交于
Signed-off-by: NJiří Župka <jzupka@redhat.com>
-
由 Yiqiao Pu 提交于
Add remote_edit method into virttest/remote.py.
-
由 Qingtang Zhou 提交于
If the parameters are missing, just skip this test. Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Qingtang Zhou 提交于
These tests will create some other format of image, so the options for qcow3 would affect them. To make these cases still work with qcow3 format, reset the 'image_extra_params' parameter in them. Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Qingtang Zhou 提交于
Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
- 02 7月, 2013 10 次提交
-
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-
由 yangdongsheng 提交于
Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com>
-
由 yangdongsheng 提交于
Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com> Add remote implement for status action. Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com>
-
由 yangdongsheng 提交于
Signed-off-by: Nyangdongsheng <yangds.fnst@cn.fujitsu.com>
-
由 Lukáš Doktor 提交于
Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
由 tian xu 提交于
sg3_utils is requried by scsi_testsuite test, so include it in unattended install files. Signed-off-by: NXu Tian <xutian@redhat.com> Acked-by: NXiaoqing Wei <xwei@redhat.com> Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Xiaoqing Wei 提交于
Currently we use autopart in all rhel guests, which bring trouble when RHEL5 RHEL6 guests w/ huge(64+G) RAM. The swap partition will be really huge and not enough space for the root partition, thus installation fails. (we met this problem on huge RAM host before). With this patch, the RHEL5 RHEL6 guest will have only 2 physical partitions(/boot, PV), and the PV contains 2 LVs(/, swap). | | / |swap| |/boot|----LVM----| | | PV | |---------------- | |guest hard drive | Note: 1) we can use plain partitions here (w/o LVM) to gain the possible tiny performance improvement, but I prefer to choose the LVM scheme, a little bit complex partioning scheme but test more (also testing the lvm layer). 2) RHEL3, RHEL4, RHEL7 kickstart config didn't update here, because: The default kernel shipped w/ RHEL3, RHEL4 dont support such huge RAM, so they will not met this issue. The anaconda of RHEL7 looks fixed this problem, install w/ autopart will not create a huge swap partition. Signed-off-by: NXiaoqing Wei <xwei@redhat.com> Acked-by: NSuqin Huang <shuang@redhat.com> Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Qingtang Zhou 提交于
qemu-guest-agent package exists in the cd image after RHEL6.3, thus install it directly in guest installation stage. For those RHEL6 guest before RHEL6.3, add a "ignoremissing" option to let them ignore this new package. Signed-off-by: NQingtang Zhou <qzhou@redhat.com> Acked-by: NFeng Yang <fyang@redhat.com>
-
由 Qingtang Zhou 提交于
Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
由 Feng Yang 提交于
We just run some bash command in python. So directly run these command in post script. Signed-off-by: NFeng Yang <fyang@redhat.com> Acked-by: NXiaoqing Wei <xwei@redhat.com> Signed-off-by: NQingtang Zhou <qzhou@redhat.com>
-
- 01 7月, 2013 8 次提交
-
-
由 Chris Evich 提交于
Signed-off-by: NChris Evich <cevich@redhat.com>
-
由 Chris Evich 提交于
Signed-off-by: NChris Evich <cevich@redhat.com>
-
由 Chris Evich 提交于
Signed-off-by: NChris Evich <cevich@redhat.com>
-
由 whuang 提交于
Signed-off-by: Nwhuang <whuang@redhat.com>
-
由 whuang 提交于
Signed-off-by: Nwhuang <whuang@redhat.com>
-
由 whuang 提交于
Signed-off-by: Nwhuang <whuang@redhat.com>
-
由 whuang 提交于
Introduce virsh domif-setlink domif-getlink testing: 1. Positive testing 1.1 Running domain and shutting off domain testing 1.2 Setlink domain interface up and down then check 1.3 Options "--config" testing 1.4 Interface name and MAC address testing 2. Negative testing 2.1 Invalid options testing 2.2 Shutting off domain with interface name Signed-off-by: Nwhuang <whuang@redhat.com>
-
由 Yu Mingfei 提交于
Signed-off-by: NYu Mingfei <yumingfei@cn.fujitsu.com>
-