# HG changeset patch # User dsamersoff # Date 1378895417 -14400 # Node ID 0f648fbe44044121ddbf69e037452d97916209b5 # Parent b6767a18b379a3caaee9b7c76ffa9233b3025009 8024056: runtime/InitialThreadOverflow/testme.sh fails Summary: on some macines gcc not able to link cxx program Reviewed-by: dholmes diff -r b6767a18b379 -r 0f648fbe4404 test/runtime/InitialThreadOverflow/testme.sh --- a/test/runtime/InitialThreadOverflow/testme.sh Mon Sep 09 14:44:37 2013 -0400 +++ b/test/runtime/InitialThreadOverflow/testme.sh Wed Sep 11 14:30:17 2013 +0400 @@ -43,9 +43,9 @@ exit 0 fi -gcc_cmd=`which gcc` -if [ "x$gcc_cmd" == "x" ]; then - echo "WARNING: gcc not found. Cannot execute test." 2>&1 +gcc_cmd=`which g++` +if [ "x$gcc_cmd" = "x" ]; then + echo "WARNING: g++ not found. Cannot execute test." 2>&1 exit 0; fi