# HG changeset patch # User Ewan Mellor # Date 1161704762 -3600 # Node ID a661566745ae1436a2aa06e947fac2413c4d07a3 # Parent fd5140c2854fe99e1181546383b40de6210f41ee Add x86_64 to the supported architectures since otherwise the tests don't run. Signed-off-by: Stefan Berger diff -r fd5140c2854f -r a661566745ae tools/xm-test/lib/XmTestLib/arch.py --- a/tools/xm-test/lib/XmTestLib/arch.py Tue Oct 24 14:52:20 2006 +0100 +++ b/tools/xm-test/lib/XmTestLib/arch.py Tue Oct 24 16:46:02 2006 +0100 @@ -124,6 +124,7 @@ ppc_ParavirtDefaults = {"memory" : 64, "i486" : "x86", "i586" : "x86", "i686" : "x86", + "x86_64": "x86_64", "ia64" : "ia64", "ppc" : "powerpc", "ppc64" : "powerpc", @@ -131,7 +132,7 @@ ppc_ParavirtDefaults = {"memory" : 64, # Lookup current platform. _arch = _uname_to_arch_map.get(os.uname()[4], "Unknown") -if _arch == "x86" or _arch == "ia64": +if _arch == "x86" or _arch == "x86_64" or _arch == "ia64": minSafeMem = ia_minSafeMem getDefaultKernel = ia_getDefaultKernel checkBuffer = ia_checkBuffer