[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Add x86_64 to the supported architectures since otherwise the tests
# HG changeset patch # User Ewan Mellor <ewan@xxxxxxxxxxxxx> # Node ID a661566745ae1436a2aa06e947fac2413c4d07a3 # Parent fd5140c2854fe99e1181546383b40de6210f41ee Add x86_64 to the supported architectures since otherwise the tests don't run. Signed-off-by: Stefan Berger <stefanb@xxxxxxxxxx> --- tools/xm-test/lib/XmTestLib/arch.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) 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 @@ _uname_to_arch_map = { "i486" : "x86", "i586" : "x86", "i686" : "x86", + "x86_64": "x86_64", "ia64" : "ia64", "ppc" : "powerpc", "ppc64" : "powerpc", @@ -131,7 +132,7 @@ _uname_to_arch_map = { # 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 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |