8019927: [TESTBUG] nsk/jvmti/GetThreadInfo/thrinfo001 intermittently fails with 'invalid thread group' when running with JFR

Reviewed-by: amenkov, cjplummer, sspitsyn
This commit is contained in:
Gary Adams 2018-08-28 07:30:36 -04:00
parent e1059f1301
commit fc61b1abfb

@ -63,13 +63,13 @@ public class thrinfo001 {
try {
t_a.join();
} catch (InterruptedException e) {}
checkInfo(t_a, t_a.getThreadGroup(), 1);
thrinfo001b t_b = new thrinfo001b();
t_b.setPriority(Thread.MIN_PRIORITY);
t_b.setDaemon(true);
checkInfo(t_b, t_b.getThreadGroup(), 2);
t_b.start();
checkInfo(t_b, t_b.getThreadGroup(), 2);
try {
t_b.join();
} catch (InterruptedException e) {}