# HG changeset patch # User coleenp # Date 1534290754 14400 # Node ID f4b4dfac45b1d61ec7cab27d7441efd92f898490 # Parent 8b23aa7cef47fdb84516356fc45d33f57e91f2df 8209518: symbol table gtest fails with semaphore error Summary: loop count was wrong. Reviewed-by: mikael, kbarrett diff -r 8b23aa7cef47 -r f4b4dfac45b1 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(); } }