8209518: symbol table gtest fails with semaphore error
authorcoleenp
Tue, 14 Aug 2018 19:52:34 -0400
changeset 51406 f4b4dfac45b1
parent 51405 8b23aa7cef47
child 51407 910f7b56592f
8209518: symbol table gtest fails with semaphore error Summary: loop count was wrong. Reviewed-by: mikael, kbarrett
test/hotspot/gtest/classfile/test_symbolTable.cpp
--- a/test/hotspot/gtest/classfile/test_symbolTable.cpp	Tue Aug 14 18:42:14 2018 -0500
+++ b/test/hotspot/gtest/classfile/test_symbolTable.cpp	Tue Aug 14 19:52:34 2018 -0400
@@ -139,7 +139,7 @@
       st[i]->doit();
     }
 
-    for (int i = 0; i < 4; i++) {
+    for (int i = 0; i < SYM_TEST_THREAD_COUNT; i++) {
       done.wait();
     }
   }