Skip to content

Commit cc70238

Browse files
committedOct 14, 2023
Drop enablePreview
1 parent 480345e commit cc70238

File tree

6 files changed

+1
-16
lines changed

6 files changed

+1
-16
lines changed
 

‎test/jdk/java/lang/Thread/virtual/JfrEvents.java

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
/**
2525
* @test
2626
* @summary Basic test for JFR jdk.VirtualThreadXXX events
27-
* @enablePreview
2827
* @requires vm.continuations
2928
* @modules jdk.jfr java.base/java.lang:+open
3029
* @library /test/lib

‎test/jdk/java/lang/Thread/virtual/Monitors.java

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* @test
2626
* @summary Test virtual thread monitor enter/exit
2727
* @key randomness
28-
* @enablePreview
2928
* @modules java.base/java.lang:+open
3029
* @library /test/lib
3130
* @run junit Monitors

‎test/jdk/java/lang/Thread/virtual/ThreadAPI.java

-2
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,13 @@
2525
* @test id=default
2626
* @bug 8284161 8286788
2727
* @summary Test Thread API with virtual threads
28-
* @enablePreview
2928
* @modules java.base/java.lang:+open
3029
* @library /test/lib
3130
* @run junit ThreadAPI
3231
*/
3332

3433
/*
3534
* @test id=no-vmcontinuations
36-
* @enablePreview
3735
* @requires vm.continuations
3836
* @modules java.base/java.lang:+open
3937
* @library /test/lib

‎test/jdk/java/lang/Thread/virtual/VirtualThreadPinnedEventThrows.java

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
/**
2525
* @test
2626
* @summary Test parking when pinned and emitting the JFR VirtualThreadPinnedEvent throws
27-
* @enablePreview
2827
* @modules java.base/jdk.internal.event
2928
* @library /test/lib
3029
* @compile/module=java.base jdk/internal/event/VirtualThreadPinnedEvent.java

‎test/jdk/java/lang/Thread/virtual/stress/LotsOfMonitors.java

+1-9
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
import java.util.ArrayList;
3333
import java.util.List;
3434
import java.util.concurrent.CountDownLatch;
35-
import java.util.concurrent.ThreadFactory;
3635
import java.util.concurrent.ThreadLocalRandom;
3736

3837
import jdk.test.lib.thread.VThreadRunner;
@@ -43,12 +42,6 @@
4342
class LotsOfMonitors {
4443
static final int MAX_MONITORS = 256;
4544

46-
static ThreadFactory threadFactory() {
47-
return ThreadLocalRandom.current().nextBoolean()
48-
? Thread.ofPlatform().factory()
49-
: Thread.ofVirtual().factory();
50-
}
51-
5245
/**
5346
* Test entering lots of monitors with no contention.
5447
*/
@@ -122,7 +115,7 @@ private void testEnter(int remaining, List<Thread> threads) throws Exception {
122115
// start thread to enter monitor for brief period, then enters again when signalled
123116
var started = new CountDownLatch(1);
124117
var signal = new CountDownLatch(1);
125-
var thread = threadFactory().newThread(() -> {
118+
var thread = Thread.ofVirtual().start(() -> {
126119
started.countDown();
127120
// enter, may be contended
128121
synchronized (lock) {
@@ -138,7 +131,6 @@ private void testEnter(int remaining, List<Thread> threads) throws Exception {
138131
// do nothing
139132
}
140133
});
141-
thread.start();
142134
started.await();
143135

144136
// enter, may be contended

‎test/jdk/java/lang/Thread/virtual/stress/PinALot.java

-2
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,13 @@
2424
/*
2525
* @test
2626
* @summary Stress test timed park when pinned
27-
* @enablePreview
2827
* @requires vm.debug != true
2928
* @library /test/lib
3029
* @run main PinALot 500000
3130
*/
3231

3332
/*
3433
* @test
35-
* @enablePreview
3634
* @requires vm.debug == true
3735
* @library /test/lib
3836
* @run main/othervm/timeout=300 PinALot 200000

0 commit comments

Comments
 (0)
Please sign in to comment.