< prev index next >

test/hotspot/jtreg/compiler/lib/ir_framework/TestFramework.java

Print this page

126                     "Xss",
127                     // The following substrings are only part of one VM flag (=exact match)
128                     "CreateCoredumpOnCrash",
129                     "IgnoreUnrecognizedVMOptions",
130                     "UnlockDiagnosticVMOptions",
131                     "UnlockExperimentalVMOptions",
132                     "BackgroundCompilation",
133                     "Xbatch",
134                     "TieredCompilation",
135                     "CompileThreshold",
136                     "Xmixed",
137                     "server",
138                     "AlignVector",
139                     "UseAVX",
140                     "UseSSE",
141                     "UseSVE",
142                     "Xlog",
143                     "LogCompilation",
144                     "UseCompactObjectHeaders",
145                     "UseFMA",

146                     // Riscv
147                     "UseRVV",
148                     "UseZbb",
149                     "UseZfh",
150                     "UseZicond",
151                     "UseZvbb"
152             )
153     );
154 
155     public static final boolean VERBOSE = Boolean.getBoolean("Verbose");
156     public static final boolean PRINT_RULE_MATCHING_TIME = Boolean.getBoolean("PrintRuleMatchingTime");
157     public static final boolean TESTLIST = !System.getProperty("Test", "").isEmpty();
158     public static final boolean EXCLUDELIST = !System.getProperty("Exclude", "").isEmpty();
159     private static final boolean REPORT_STDOUT = Boolean.getBoolean("ReportStdout");
160     // Only used for internal testing and should not be used for normal user testing.
161 
162     private static final String RERUN_HINT = """
163                                                #############################################################
164                                                 - To only run the failed tests use -DTest, -DExclude,
165                                                   and/or -DScenarios.

126                     "Xss",
127                     // The following substrings are only part of one VM flag (=exact match)
128                     "CreateCoredumpOnCrash",
129                     "IgnoreUnrecognizedVMOptions",
130                     "UnlockDiagnosticVMOptions",
131                     "UnlockExperimentalVMOptions",
132                     "BackgroundCompilation",
133                     "Xbatch",
134                     "TieredCompilation",
135                     "CompileThreshold",
136                     "Xmixed",
137                     "server",
138                     "AlignVector",
139                     "UseAVX",
140                     "UseSSE",
141                     "UseSVE",
142                     "Xlog",
143                     "LogCompilation",
144                     "UseCompactObjectHeaders",
145                     "UseFMA",
146                     "AOTCache",
147                     // Riscv
148                     "UseRVV",
149                     "UseZbb",
150                     "UseZfh",
151                     "UseZicond",
152                     "UseZvbb"
153             )
154     );
155 
156     public static final boolean VERBOSE = Boolean.getBoolean("Verbose");
157     public static final boolean PRINT_RULE_MATCHING_TIME = Boolean.getBoolean("PrintRuleMatchingTime");
158     public static final boolean TESTLIST = !System.getProperty("Test", "").isEmpty();
159     public static final boolean EXCLUDELIST = !System.getProperty("Exclude", "").isEmpty();
160     private static final boolean REPORT_STDOUT = Boolean.getBoolean("ReportStdout");
161     // Only used for internal testing and should not be used for normal user testing.
162 
163     private static final String RERUN_HINT = """
164                                                #############################################################
165                                                 - To only run the failed tests use -DTest, -DExclude,
166                                                   and/or -DScenarios.
< prev index next >