On powerpc I have a strange thing going on. I can see: $ cat ./src/signalhandler_unittest.sh [...] # The PC cannot be obtained in signal handlers on PowerPC correctly. # We just skip the test for PowerPC. if [ x`uname -p` = x"powerpc" ]; then echo "PASS (We don't test the signal handler on PowerPC.)" exit 0 fi
However I have: $ uname -a Linux macminig4 2.6.32-5-powerpc #1 Thu Mar 22 17:20:53 UTC 2012 ppc GNU/Linux $ uname -p unknown Maybe the script could use the output of 'uname -m' $ uname -m ppc 2cts -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

