Skip to content

Commit 69d0f7a

Browse files
marc-chevalierchhagedorn
authored andcommitted
8354284: Add more compiler test folders to tier1 runs
Reviewed-by: chagedorn, kvn
1 parent c94a7ae commit 69d0f7a

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

test/hotspot/jtreg/TEST.groups

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,8 @@ tier1_compiler_1 = \
171171
-compiler/c2/Test6912517.java
172172

173173
tier1_compiler_2 = \
174+
compiler/ccp/ \
175+
compiler/ciTypeFlow/ \
174176
compiler/classUnloading/ \
175177
compiler/codecache/ \
176178
compiler/codegen/ \
@@ -181,11 +183,11 @@ tier1_compiler_2 = \
181183
compiler/exceptions/ \
182184
compiler/floatingpoint/ \
183185
compiler/gcbarriers/ \
186+
compiler/igvn/ \
184187
compiler/inlining/ \
185188
compiler/integerArithmetic/ \
186189
compiler/interpreter/ \
187190
compiler/jvmci/ \
188-
compiler/igvn/ \
189191
-compiler/classUnloading/methodUnloading/TestOverloadCompileQueues.java \
190192
-compiler/codecache/stress \
191193
-compiler/codegen/aes \
@@ -199,9 +201,12 @@ tier1_compiler_3 = \
199201
compiler/macronodes/ \
200202
compiler/memoryinitialization/ \
201203
compiler/osr/ \
204+
compiler/predicates/ \
202205
compiler/profiling \
203206
compiler/regalloc/ \
204207
compiler/runtime/ \
208+
compiler/sharedstubs/ \
209+
compiler/splitif/ \
205210
compiler/startup/ \
206211
compiler/types/ \
207212
compiler/uncommontrap/ \

test/hotspot/jtreg/compiler/ccp/TestAndConZeroCCP.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @bug 8350563
2727
* @summary Test that And nodes are monotonic and added to the CCP worklist if they have a constant as input.
2828
* @run main/othervm -Xbatch -XX:-TieredCompilation compiler.ccp.TestAndConZeroCCP
29-
* @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:RepeatCompilation=300 -XX:+StressIGVN -XX:+StressCCP -Xcomp
29+
* @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:RepeatCompilation=100 -XX:+StressIGVN -XX:+StressCCP -Xcomp
3030
* -XX:CompileOnly=java.lang.Integer::parseInt compiler.ccp.TestAndConZeroCCP compileonly
3131
* @run main compiler.ccp.TestAndConZeroCCP
3232
*/
@@ -42,7 +42,7 @@ public static void main(String[] args) {
4242
return;
4343
}
4444

45-
for (int i = 0; i < 10000; ++i) {
45+
for (int i = 0; i < 100; ++i) {
4646
run();
4747
}
4848
}

0 commit comments

Comments
 (0)