|
From: <sv...@va...> - 2006-01-04 03:08:49
|
Author: sewardj
Date: 2006-01-04 03:08:16 +0000 (Wed, 04 Jan 2006)
New Revision: 5495
Log:
Do ppc32 tests on ppc64-capable platforms.
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 2006-01-04 02:55:03 UTC (rev 5494)
+++ trunk/tests/cputest.c 2006-01-04 03:08:16 UTC (rev 5495)
@@ -27,8 +27,7 @@
{
if ( strcmp( cpu, "ppc32" ) =3D=3D 0 )
return True;
- else=20
- return False;
+ return False;
}
#endif // __powerpc__ (32)
=20
@@ -37,8 +36,9 @@
{
if ( strcmp( cpu, "ppc64" ) =3D=3D 0 )
return True;
- else=20
- return False;
+ if ( strcmp( cpu, "ppc32" ) =3D=3D 0 )
+ return True;
+ return False;
}
#endif // __powerpc__ (64)
=20
|