test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001.java
changeset 51549 f419dbb34719
parent 50260 46c67f5e27c2
--- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001.java	Tue Aug 28 16:04:54 2018 -0400
+++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001.java	Tue Aug 28 07:30:36 2018 -0400
@@ -63,13 +63,13 @@
         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) {}