projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cbd4a6
)
This fixes another missing part for x86-64 support in the xm testsuite.
author
Ewan Mellor
<ewan@xensource.com>
Wed, 1 Nov 2006 08:34:55 +0000
(08:34 +0000)
committer
Ewan Mellor
<ewan@xensource.com>
Wed, 1 Nov 2006 08:34:55 +0000
(08:34 +0000)
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
tools/xm-test/lib/XmTestReport/arch.py
patch
|
blob
|
history
diff --git
a/tools/xm-test/lib/XmTestReport/arch.py
b/tools/xm-test/lib/XmTestReport/arch.py
index e4fd16273da63891a53105cea4149a4f9ca605d0..965e7fb9c67ede05f743f95d3aae5c1ed5c62c05 100644
(file)
--- a/
tools/xm-test/lib/XmTestReport/arch.py
+++ b/
tools/xm-test/lib/XmTestReport/arch.py
@@
-28,6
+28,7
@@
_uname_to_arch_map = {
"i486" : "x86",
"i586" : "x86",
"i686" : "x86",
+ "x86_64": "x86_64",
"ia64" : "ia64",
"ppc" : "powerpc",
"ppc64" : "powerpc",
@@
-37,6
+38,9
@@
_arch = _uname_to_arch_map.get(os.uname()[4], "Unknown")
if _arch == "x86":
cpuValues = {"model_name" : "Unknown",
"flags" : "Unknown"}
+elif _arch == "x86_64":
+ cpuValues = {"model_name" : "Unknown",
+ "flags" : "Unknown"}
elif _arch == "ia64":
cpuValues = {"arch" : "Unknown",
"features" : "Unknown"}