1
1
/*
2
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
23
23
24
24
/**
25
25
* @test
26
- * @bug 8167108
26
+ * @bug 8167108 8266130
27
27
* @summary Stress test java.lang.Thread.isInterrupted() at thread exit.
28
- * @run main/othervm -Xlog:thread+smr=debug IsInterruptedAtExit
28
+ * @run main/othervm IsInterruptedAtExit
29
29
*/
30
30
31
31
import java .util .concurrent .CountDownLatch ;
32
32
33
33
public class IsInterruptedAtExit extends Thread {
34
- final static int N_THREADS = 32 ;
35
- final static int N_LATE_CALLS = 2000 ;
34
+ private final static int DEF_TIME_MAX = 30 ; // default max # secs to test
35
+ private final static String PROG_NAME = "IsInterruptedAtExit" ;
36
36
37
37
public CountDownLatch exitSyncObj = new CountDownLatch (1 );
38
38
public CountDownLatch startSyncObj = new CountDownLatch (1 );
@@ -42,33 +42,46 @@ public void run() {
42
42
// Tell main thread we have started.
43
43
startSyncObj .countDown ();
44
44
try {
45
- // Wait for main thread to interrupt us so we
46
- // can race to exit.
45
+ // Wait for main thread to tell us to race to the exit.
47
46
exitSyncObj .await ();
48
47
} catch (InterruptedException e ) {
49
- // ignore because we expect one
48
+ throw new RuntimeException ( "Unexpected: " + e );
50
49
}
51
50
}
52
51
53
52
public static void main (String [] args ) {
54
- IsInterruptedAtExit threads [] = new IsInterruptedAtExit [N_THREADS ];
53
+ int timeMax = 0 ;
54
+ if (args .length == 0 ) {
55
+ timeMax = DEF_TIME_MAX ;
56
+ } else {
57
+ try {
58
+ timeMax = Integer .parseUnsignedInt (args [0 ]);
59
+ } catch (NumberFormatException nfe ) {
60
+ System .err .println ("'" + args [0 ] + "': invalid timeMax value." );
61
+ usage ();
62
+ }
63
+ }
55
64
56
- for (int i = 0 ; i < N_THREADS ; i ++ ) {
57
- threads [i ] = new IsInterruptedAtExit ();
58
- int late_count = 1 ;
59
- threads [i ].start ();
65
+ System .out .println ("About to execute for " + timeMax + " seconds." );
66
+
67
+ long count = 0 ;
68
+ long start_time = System .currentTimeMillis ();
69
+ while (System .currentTimeMillis () < start_time + (timeMax * 1000 )) {
70
+ count ++;
71
+
72
+ IsInterruptedAtExit thread = new IsInterruptedAtExit ();
73
+ thread .start ();
60
74
try {
61
75
// Wait for the worker thread to get going.
62
- threads [i ].startSyncObj .await ();
63
-
64
- // This interrupt() call will break the worker out of
65
- // the exitSyncObj.await() call and the isInterrupted()
66
- // calls will come in during thread exit.
67
- threads [i ].interrupt ();
68
- for (; late_count <= N_LATE_CALLS ; late_count ++) {
69
- threads [i ].isInterrupted ();
76
+ thread .startSyncObj .await ();
77
+ // Tell the worker thread to race to the exit and the
78
+ // Thread.isInterrupted() calls will come in during
79
+ // thread exit.
80
+ thread .exitSyncObj .countDown ();
81
+ while (true ) {
82
+ thread .isInterrupted ();
70
83
71
- if (!threads [ i ] .isAlive ()) {
84
+ if (!thread .isAlive ()) {
72
85
// Done with Thread.isInterrupted() calls since
73
86
// thread is not alive.
74
87
break ;
@@ -78,30 +91,30 @@ public static void main(String[] args) {
78
91
throw new Error ("Unexpected: " + e );
79
92
}
80
93
81
- System .out .println ("INFO: thread #" + i + ": made " + late_count +
82
- " late calls to java.lang.Thread.isInterrupted()" );
83
- System .out .println ("INFO: thread #" + i + ": N_LATE_CALLS==" +
84
- N_LATE_CALLS + " value is " +
85
- ((late_count >= N_LATE_CALLS ) ? "NOT " : "" ) +
86
- "large enough to cause a Thread.isInterrupted() " +
87
- "call after thread exit." );
88
-
89
94
try {
90
- threads [ i ] .join ();
95
+ thread .join ();
91
96
} catch (InterruptedException e ) {
92
97
throw new Error ("Unexpected: " + e );
93
98
}
94
- threads [i ].isInterrupted ();
95
- if (threads [i ].isAlive ()) {
96
- throw new Error ("Expected !Thread.isAlive() after thread #" +
97
- i + " has been join()'ed" );
98
- }
99
+ thread .isInterrupted ();
99
100
}
100
101
102
+ System .out .println ("Executed " + count + " loops in " + timeMax +
103
+ " seconds." );
104
+
101
105
String cmd = System .getProperty ("sun.java.command" );
102
106
if (cmd != null && !cmd .startsWith ("com.sun.javatest.regtest.agent.MainWrapper" )) {
103
107
// Exit with success in a non-JavaTest environment:
104
108
System .exit (0 );
105
109
}
106
110
}
111
+
112
+ public static void usage () {
113
+ System .err .println ("Usage: " + PROG_NAME + " [time_max]" );
114
+ System .err .println ("where:" );
115
+ System .err .println (" time_max max looping time in seconds" );
116
+ System .err .println (" (default is " + DEF_TIME_MAX +
117
+ " seconds)" );
118
+ System .exit (1 );
119
+ }
107
120
}
0 commit comments