8024056: runtime/InitialThreadOverflow/testme.sh fails
authordsamersoff
Wed, 11 Sep 2013 14:30:17 +0400
changeset 19955 4700261a6edb
parent 19954 1642109d1a2c
child 19956 9065fbafee8d
8024056: runtime/InitialThreadOverflow/testme.sh fails Summary: on some macines gcc not able to link cxx program Reviewed-by: dholmes
hotspot/test/runtime/InitialThreadOverflow/testme.sh
--- a/hotspot/test/runtime/InitialThreadOverflow/testme.sh	Mon Sep 09 14:44:37 2013 -0400
+++ b/hotspot/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