File tree 1 file changed +5
-2
lines changed
test/jdk/jdk/internal/vm/Continuation
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2018, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2018, 2023 , 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
@@ -82,7 +82,7 @@ public class Fuzz implements Runnable {
82
82
static final boolean VERBOSE = false ;
83
83
84
84
static float timeoutFactor = Float .parseFloat (System .getProperty ("test.timeout.factor" , "1.0" ));
85
- static final int COMPILATION_TIMEOUT = (int )(5_000 * timeoutFactor ); // ms
85
+ static int COMPILATION_TIMEOUT = (int )(5_000 * timeoutFactor ); // ms
86
86
87
87
static final Path TEST_DIR = Path .of (System .getProperty ("test.src" , "." ));
88
88
@@ -91,6 +91,9 @@ public static void main(String[] args) {
91
91
throw new SkippedException ("Test is unstable with slowdebug bits "
92
92
+ "on macosx-aarch64" );
93
93
}
94
+ if (Platform .isPPC ()) {
95
+ COMPILATION_TIMEOUT = COMPILATION_TIMEOUT * 2 ;
96
+ }
94
97
warmup ();
95
98
for (int compileLevel : new int []{4 }) {
96
99
for (boolean compileRun : new boolean []{true }) {
You can’t perform that action at this time.
0 commit comments