8157528: jdk/jshell/ExecutionControlTest.java failed intermittently with NPE
Reviewed-by: jlahoda
--- a/langtools/test/jdk/jshell/LocalExecutionControl.java Mon May 23 10:12:05 2016 -0700
+++ b/langtools/test/jdk/jshell/LocalExecutionControl.java Mon May 23 13:05:04 2016 -0700
@@ -171,7 +171,8 @@
Thread[] threadList = new Thread[execThreadGroup.activeCount()];
execThreadGroup.enumerate(threadList);
for (Thread thread : threadList) {
- thread.join();
+ if (thread != null)
+ thread.join();
}
if (stopped.get()) {