|
From: <sv...@va...> - 2005-11-10 23:30:26
|
Author: sewardj
Date: 2005-11-10 23:30:21 +0000 (Thu, 10 Nov 2005)
New Revision: 5076
Log:
Do cpu string identification right, so the ppc32-specific tests
actually get run.
Modified:
trunk/tests/cputest.c
Modified: trunk/tests/cputest.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/tests/cputest.c 2005-11-10 19:33:56 UTC (rev 5075)
+++ trunk/tests/cputest.c 2005-11-10 23:30:21 UTC (rev 5076)
@@ -34,7 +34,7 @@
#ifdef __powerpc__
static Bool go(char* cpu)
{
- if ( strcmp( cpu, "ppc" ) =3D=3D 0 )
+ if ( strcmp( cpu, "ppc32" ) =3D=3D 0 )
return True;
else=20
return False;
|