@@ -2046,7 +2046,7 @@ private boolean contains(StackTraceElement[] stack, String expected) {
2046
2046
2047
2047
2048
2048
/**
2049
- * Test Thread::getThreadGroup of virtual thread created by platform thread.
2049
+ * Test Thread::getThreadGroup on virtual thread created by platform thread.
2050
2050
*/
2051
2051
@ Test
2052
2052
public void testThreadGroup1 () throws Exception {
@@ -2063,7 +2063,7 @@ public void testThreadGroup1() throws Exception {
2063
2063
}
2064
2064
2065
2065
/**
2066
- * Test Thread::getThreadGroup of platform thread created by virtual thread.
2066
+ * Test Thread::getThreadGroup on platform thread created by virtual thread.
2067
2067
*/
2068
2068
@ Test
2069
2069
public void testThreadGroup2 () throws Exception {
@@ -2075,6 +2075,60 @@ public void testThreadGroup2() throws Exception {
2075
2075
});
2076
2076
}
2077
2077
2078
+ /**
2079
+ * Test ThreadGroup returned by Thread::getThreadGroup and subgroup
2080
+ * created with 2-arg ThreadGroup constructor.
2081
+ */
2082
+ @ Test
2083
+ public void testThreadGroup3 () throws Exception {
2084
+ var ref = new AtomicReference <ThreadGroup >();
2085
+ var thread = Thread .startVirtualThread (() -> {
2086
+ ref .set (Thread .currentThread ().getThreadGroup ());
2087
+ });
2088
+ thread .join ();
2089
+
2090
+ ThreadGroup vgroup = ref .get ();
2091
+ assertTrue (vgroup .getMaxPriority () == Thread .MAX_PRIORITY );
2092
+
2093
+ ThreadGroup group = new ThreadGroup (vgroup , "group" );
2094
+ assertTrue (group .getParent () == vgroup );
2095
+ assertTrue (group .getMaxPriority () == Thread .MAX_PRIORITY );
2096
+
2097
+ vgroup .setMaxPriority (Thread .MAX_PRIORITY - 1 );
2098
+ assertTrue (vgroup .getMaxPriority () == Thread .MAX_PRIORITY );
2099
+ assertTrue (group .getMaxPriority () == Thread .MAX_PRIORITY - 1 );
2100
+
2101
+ vgroup .setMaxPriority (Thread .MIN_PRIORITY );
2102
+ assertTrue (vgroup .getMaxPriority () == Thread .MAX_PRIORITY );
2103
+ assertTrue (group .getMaxPriority () == Thread .MIN_PRIORITY );
2104
+ }
2105
+
2106
+ /**
2107
+ * Test ThreadGroup returned by Thread::getThreadGroup and subgroup
2108
+ * created with 1-arg ThreadGroup constructor.
2109
+ */
2110
+ @ Test
2111
+ public void testThreadGroup4 () throws Exception {
2112
+ TestHelper .runInVirtualThread (() -> {
2113
+ ThreadGroup vgroup = Thread .currentThread ().getThreadGroup ();
2114
+
2115
+ assertTrue (vgroup .getMaxPriority () == Thread .MAX_PRIORITY );
2116
+
2117
+ ThreadGroup group = new ThreadGroup ("group" );
2118
+ assertTrue (group .getParent () == vgroup );
2119
+ assertTrue (group .getMaxPriority () == Thread .MAX_PRIORITY );
2120
+
2121
+ vgroup .setMaxPriority (Thread .MAX_PRIORITY - 1 );
2122
+ assertTrue (vgroup .getMaxPriority () == Thread .MAX_PRIORITY );
2123
+ assertTrue (group .getMaxPriority () == Thread .MAX_PRIORITY - 1 );
2124
+
2125
+ vgroup .setMaxPriority (Thread .MIN_PRIORITY );
2126
+ assertTrue (vgroup .getMaxPriority () == Thread .MAX_PRIORITY );
2127
+ assertTrue (group .getMaxPriority () == Thread .MIN_PRIORITY );
2128
+
2129
+ });
2130
+ }
2131
+
2078
2132
/**
2079
2133
* Test Thread.enumerate(false).
2080
2134
*/
0 commit comments