58
58
* @modules java.base/jdk.internal.misc
59
59
* java.base/jdk.internal.ref
60
60
* java.management
61
+ * @compile --enable-preview -source ${jdk.version} CleanerTest.java
61
62
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
62
- * @run testng/othervm
63
+ * @run testng/othervm --enable-preview
64
+ * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:.
65
+ * -verbose:gc CleanerTest
66
+ * @run testng/othervm --enable-preview -Dtest.virtualThread=true
63
67
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:.
64
68
* -verbose:gc CleanerTest
65
69
*/
@@ -72,6 +76,14 @@ public class CleanerTest {
72
76
// Access to WhiteBox utilities
73
77
static final WhiteBox whitebox = WhiteBox .getWhiteBox ();
74
78
79
+ static final boolean VIRTUAL = Boolean .getBoolean ("test.virtualThread" );
80
+
81
+ Cleaner create () {
82
+ return VIRTUAL
83
+ ? Cleaner .create (Thread .ofVirtual ().factory ())
84
+ : Cleaner .create ();
85
+ }
86
+
75
87
/**
76
88
* Test that sequences of the various actions on a Reference
77
89
* and on the Cleanable instance have the desired result.
@@ -85,7 +97,7 @@ public class CleanerTest {
85
97
@ Test
86
98
@ SuppressWarnings ("unchecked" )
87
99
void testCleanableActions () {
88
- Cleaner cleaner = Cleaner . create ();
100
+ Cleaner cleaner = create ();
89
101
90
102
// Individually
91
103
generateCases (cleaner , c -> c .clearRef ());
@@ -112,7 +124,7 @@ void testCleanableActions() {
112
124
@ Test
113
125
@ SuppressWarnings ("unchecked" )
114
126
void testRefSubtypes () {
115
- Cleaner cleaner = Cleaner . create ();
127
+ Cleaner cleaner = create ();
116
128
117
129
// Individually
118
130
generateCasesInternal (cleaner , c -> c .clearRef ());
@@ -251,7 +263,7 @@ void verifyGetRef(CleanableCase test) {
251
263
@ Test
252
264
void testCleanerTermination () {
253
265
ReferenceQueue <Object > queue = new ReferenceQueue <>();
254
- Cleaner service = Cleaner . create ();
266
+ Cleaner service = create ();
255
267
256
268
PhantomReference <Object > ref = new PhantomReference <>(service , queue );
257
269
System .gc ();
@@ -522,7 +534,7 @@ public String toString() {
522
534
@ Test
523
535
@ SuppressWarnings ("rawtypes" )
524
536
void testReferentNotAvailable () {
525
- Cleaner cleaner = Cleaner . create ();
537
+ Cleaner cleaner = create ();
526
538
Semaphore s1 = new Semaphore (0 );
527
539
528
540
Object obj = new String ("a new string" );
0 commit comments