Skip to content

Commit 95026bf

Browse files
committed
Add output to manual #29 test
1 parent fce4938 commit 95026bf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/test/java/failing/ManualIssue29Repro.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,19 @@ public class ManualIssue29Repro implements Runnable
2424
private static XMLEventAllocator allocator = EventAllocatorImpl.getDefaultInstance();
2525
private static AsyncXMLInputFactory inputFactory = new InputFactoryImpl();
2626

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...");
2830
ExecutorService ex = Executors.newFixedThreadPool(NUM_THREADS);
2931

3032
for (int i = 0; i < 100000; i++) {
3133
ex.submit(new ManualIssue29Repro(i));
3234
}
3335

36+
System.out.println("Stopping test...");
3437
ex.shutdown();
3538
ex.awaitTermination(Integer.MAX_VALUE, TimeUnit.SECONDS);
39+
System.out.println("Completed: SUCCESS");
3640
}
3741

3842
private final int count;

0 commit comments

Comments
 (0)