We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a0c3e5 commit 54843b7Copy full SHA for 54843b7
test/jdk/jdk/internal/vm/Continuation/Fuzz.java
@@ -78,7 +78,8 @@ public class Fuzz implements Runnable {
78
static final boolean RANDOM = true;
79
static final boolean VERBOSE = false;
80
81
- static final int COMPILATION_TIMEOUT = 5_000; // ms
+ static float timeoutFactor = Float.parseFloat(System.getProperty("test.timeout.factor", "1.0"));
82
+ static final int COMPILATION_TIMEOUT = (int)(5_000 * timeoutFactor); // ms
83
84
static final Path TEST_DIR = Path.of(System.getProperty("test.src", "."));
85
0 commit comments