diff options
Diffstat (limited to 'test/114-ParallelGC/src')
| -rw-r--r-- | test/114-ParallelGC/src/Main.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/114-ParallelGC/src/Main.java b/test/114-ParallelGC/src/Main.java index 8e2519dd0a..48f9bd363f 100644 --- a/test/114-ParallelGC/src/Main.java +++ b/test/114-ParallelGC/src/Main.java @@ -24,7 +24,10 @@ import java.util.concurrent.TimeoutException; public class Main implements Runnable { - public final static long TIMEOUT_VALUE = 5; // Timeout in minutes. + // Timeout in minutes. Make it larger than the run-test timeout to get a native thread dump by + // ART on timeout when running on the host. + public final static long TIMEOUT_VALUE = 12; + public final static long MAX_SIZE = 1000; // Maximum size of array-list to allocate. public static void main(String[] args) throws Exception { |