26 # @summary Test with extra TLS size. 27 # @requires os.family == "linux" 28 # @compile T.java 29 # @run shell testtls.sh 30 # 31 32 if [ "${TESTSRC}" = "" ] 33 then 34 TESTSRC=${PWD} 35 echo "TESTSRC not set. Using "${TESTSRC}" as default" 36 fi 37 echo "TESTSRC=${TESTSRC}" 38 ## Adding common setup Variables for running shell tests. 39 . ${TESTSRC}/../../test_env.sh 40 41 LD_LIBRARY_PATH=.:${TESTJAVA}/lib/${VM_TYPE}:/usr/lib:$LD_LIBRARY_PATH 42 export LD_LIBRARY_PATH 43 44 # Test 1) Run with stack size adjusted for TLS 45 ${TESTNATIVEPATH}/stack-tls -add_tls || exit $? 46 # Test 2) Run with no stack size adjustment 47 ${TESTNATIVEPATH}/stack-tls || exit $? | 26 # @summary Test with extra TLS size. 27 # @requires os.family == "linux" 28 # @compile T.java 29 # @run shell testtls.sh 30 # 31 32 if [ "${TESTSRC}" = "" ] 33 then 34 TESTSRC=${PWD} 35 echo "TESTSRC not set. Using "${TESTSRC}" as default" 36 fi 37 echo "TESTSRC=${TESTSRC}" 38 ## Adding common setup Variables for running shell tests. 39 . ${TESTSRC}/../../test_env.sh 40 41 LD_LIBRARY_PATH=.:${TESTJAVA}/lib/${VM_TYPE}:/usr/lib:$LD_LIBRARY_PATH 42 export LD_LIBRARY_PATH 43 44 # Test 1) Run with stack size adjusted for TLS 45 ${TESTNATIVEPATH}/stack-tls -add_tls || exit $? 46 47 # Test 2) Run with no stack size adjustment and expect failure. 48 # 49 # Potential failures include StackOverflowError, thread creation failures, 50 # crashes, and etc. The test case can be used to demonstrate the TLS issue 51 # but is excluded from running in regular testing. 52 #${TESTNATIVEPATH}/stack-tls || exit $? |