|
From: Jeroen N. W. <jn...@xs...> - 2005-09-10 11:28:52
|
Greetings,
The introduction of test none/tests/ppc32/lsw in revision 4614 activated a
small bug in tests/cputest.c: Directory ppc32 is not excluded when running
on x86. The patch below fixes this problem.
Jeroen.
Index: tests/cputest.c
===================================================================
--- tests/cputest.c (revision 4614)
+++ tests/cputest.c (working copy)
@@ -16,7 +16,7 @@
char* all_archs[] = {
"amd64",
- "ppc",
+ "ppc32",
"x86",
NULL
};
@@ -34,7 +34,7 @@
#ifdef __powerpc__
static Bool go(char* cpu)
{
- if ( strcmp( cpu, "ppc" ) == 0 )
+ if ( strcmp( cpu, "ppc32" ) == 0 )
return True;
else
return False;
|