Do cpu string identification right, so the ppc32-specific tests
actually get run.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5076 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/tests/cputest.c b/tests/cputest.c
index 0d85a6f..5db6b9d 100644
--- a/tests/cputest.c
+++ b/tests/cputest.c
@@ -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;