Skip to content

Commit 067b296

Browse files
committedNov 1, 2021
Add a test for virtual cleaner threads
1 parent 0967689 commit 067b296

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed
 

‎test/jdk/java/lang/ref/CleanerTest.java

+17-5
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,12 @@
5858
* @modules java.base/jdk.internal.misc
5959
* java.base/jdk.internal.ref
6060
* java.management
61+
* @compile --enable-preview -source ${jdk.version} CleanerTest.java
6162
* @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
6367
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:.
6468
* -verbose:gc CleanerTest
6569
*/
@@ -72,6 +76,14 @@ public class CleanerTest {
7276
// Access to WhiteBox utilities
7377
static final WhiteBox whitebox = WhiteBox.getWhiteBox();
7478

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+
7587
/**
7688
* Test that sequences of the various actions on a Reference
7789
* and on the Cleanable instance have the desired result.
@@ -85,7 +97,7 @@ public class CleanerTest {
8597
@Test
8698
@SuppressWarnings("unchecked")
8799
void testCleanableActions() {
88-
Cleaner cleaner = Cleaner.create();
100+
Cleaner cleaner = create();
89101

90102
// Individually
91103
generateCases(cleaner, c -> c.clearRef());
@@ -112,7 +124,7 @@ void testCleanableActions() {
112124
@Test
113125
@SuppressWarnings("unchecked")
114126
void testRefSubtypes() {
115-
Cleaner cleaner = Cleaner.create();
127+
Cleaner cleaner = create();
116128

117129
// Individually
118130
generateCasesInternal(cleaner, c -> c.clearRef());
@@ -251,7 +263,7 @@ void verifyGetRef(CleanableCase test) {
251263
@Test
252264
void testCleanerTermination() {
253265
ReferenceQueue<Object> queue = new ReferenceQueue<>();
254-
Cleaner service = Cleaner.create();
266+
Cleaner service = create();
255267

256268
PhantomReference<Object> ref = new PhantomReference<>(service, queue);
257269
System.gc();
@@ -522,7 +534,7 @@ public String toString() {
522534
@Test
523535
@SuppressWarnings("rawtypes")
524536
void testReferentNotAvailable() {
525-
Cleaner cleaner = Cleaner.create();
537+
Cleaner cleaner = create();
526538
Semaphore s1 = new Semaphore(0);
527539

528540
Object obj = new String("a new string");

0 commit comments

Comments
 (0)
Please sign in to comment.