From f9f30d433fd3c7f34c5bc3c95e7ac6920f281b8a Mon Sep 17 00:00:00 2001 From: dsamersoff Date: Wed, 11 Sep 2013 14:30:17 +0400 Subject: [PATCH] 8024056: runtime/InitialThreadOverflow/testme.sh fails Summary: on some macines gcc not able to link cxx program Reviewed-by: dholmes --- test/runtime/InitialThreadOverflow/testme.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/runtime/InitialThreadOverflow/testme.sh b/test/runtime/InitialThreadOverflow/testme.sh index 015a6bd43..b7154dc2a 100644 --- a/test/runtime/InitialThreadOverflow/testme.sh +++ b/test/runtime/InitialThreadOverflow/testme.sh @@ -43,9 +43,9 @@ then 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 -- GitLab