[libvirt] [PATCH] Skip nodeinfo test on non intel architectures

Guido Günther agx at sigxcpu.org
Sun Jun 12 22:37:41 UTC 2011


since the testfiles assume a /proc/cpuinfo specific to this
architecture. We e.g. can't parse the number of cores on other
architectures.

O.k. to apply?
Cheers,
 -- Guido

---
 tests/nodeinfotest.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/tests/nodeinfotest.c b/tests/nodeinfotest.c
index b4e81b3..71e2926 100644
--- a/tests/nodeinfotest.c
+++ b/tests/nodeinfotest.c
@@ -11,7 +11,9 @@
 #include "util.h"
 #include "files.h"
 
-#ifndef __linux__
+#if ! (defined __linux__  &&  (defined(__x86_64__) || \
+                               defined(__amd64__)  || \
+                               defined(__i386__)))
 
 static int
 mymain(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED)
-- 
1.7.5.3




More information about the libvir-list mailing list