
Reviewed-by: Rodrigo Trujillo <rodrigo.trujillo@linux.vnet.ibm.com> On 08/06/2014 05:14 PM, Aline Manera wrote:
Do not hard coded x86_64 while running feature tests. It prevents kimchi to run in different platforms.
Signed-off-by: Aline Manera <alinefm@linux.vnet.ibm.com> --- src/kimchi/featuretests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kimchi/featuretests.py b/src/kimchi/featuretests.py index e401c23..8964098 100644 --- a/src/kimchi/featuretests.py +++ b/src/kimchi/featuretests.py @@ -59,7 +59,7 @@ SIMPLE_VM_XML = """ <name>A_SIMPLE_VM</name> <memory unit='KiB'>10240</memory> <os> - <type arch='x86_64' machine='pc'>hvm</type> + <type>hvm</type> <boot dev='hd'/> </os> </domain>"""