Skip to content

Commit 8d54520

Browse files
committedJul 1, 2020
Remove iteration count on tests
1 parent 1d0b21d commit 8d54520

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
public class SleepALot {
3535

36-
static final int ITERATIONS = 10_000_000;
36+
static final int ITERATIONS = 1_000_000;
3737

3838
public static void main(String[] args) throws Exception {
3939
AtomicInteger count = new AtomicInteger();

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
public class YieldALot {
3535

36-
static final int ITERATIONS = 10_000_000;
36+
static final int ITERATIONS = 1_000_000;
3737

3838
public static void main(String[] args) throws Exception {
3939
AtomicInteger count = new AtomicInteger();

0 commit comments

Comments
 (0)
Please sign in to comment.