File tree 1 file changed +5
-1
lines changed 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -24,15 +24,19 @@ public class ManualIssue29Repro implements Runnable
24
24
private static XMLEventAllocator allocator = EventAllocatorImpl .getDefaultInstance ();
25
25
private static AsyncXMLInputFactory inputFactory = new InputFactoryImpl ();
26
26
27
- public static void main (String [] args ) throws InterruptedException {
27
+ public static void main (String [] args ) throws InterruptedException
28
+ {
29
+ System .out .println ("Starting test..." );
28
30
ExecutorService ex = Executors .newFixedThreadPool (NUM_THREADS );
29
31
30
32
for (int i = 0 ; i < 100000 ; i ++) {
31
33
ex .submit (new ManualIssue29Repro (i ));
32
34
}
33
35
36
+ System .out .println ("Stopping test..." );
34
37
ex .shutdown ();
35
38
ex .awaitTermination (Integer .MAX_VALUE , TimeUnit .SECONDS );
39
+ System .out .println ("Completed: SUCCESS" );
36
40
}
37
41
38
42
private final int count ;
You can’t perform that action at this time.
0 commit comments