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

Guido Günther agx at sigxcpu.org
Tue Jun 14 20:33:40 UTC 2011


On Tue, Jun 14, 2011 at 09:54:33AM -0600, Eric Blake wrote:
> On 06/12/2011 04:37 PM, Guido Günther wrote:
> > 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__)))
> 
> ACK.
Pushed. Thanks,
 -- Guido




More information about the libvir-list mailing list