# HG changeset patch # User jiangli # Date 1562953159 25200 # Node ID c659942fc4715f598d5c09aaac15d953ff74dec1 # Parent d755f53becea0e8a251dbf382e12266bdffd6fd4 8227582: runtime/TLS/testtls.sh fails on x86_32 Summary: Disable the negative test case for regular testing. Reviewed-by: shade diff -r d755f53becea -r c659942fc471 test/hotspot/jtreg/runtime/TLS/testtls.sh --- a/test/hotspot/jtreg/runtime/TLS/testtls.sh Fri Jul 12 02:50:43 2019 -0700 +++ b/test/hotspot/jtreg/runtime/TLS/testtls.sh Fri Jul 12 10:39:19 2019 -0700 @@ -43,5 +43,10 @@ # Test 1) Run with stack size adjusted for TLS ${TESTNATIVEPATH}/stack-tls -add_tls || exit $? -# Test 2) Run with no stack size adjustment -${TESTNATIVEPATH}/stack-tls || exit $? + +# Test 2) Run with no stack size adjustment and expect failure. +# +# Potential failures include StackOverflowError, thread creation failures, +# crashes, and etc. The test case can be used to demonstrate the TLS issue +# but is excluded from running in regular testing. +#${TESTNATIVEPATH}/stack-tls || exit $?