Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions test/hotspot/jtreg/ProblemList.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ compiler/interpreter/Test6833129.java 8335266 generic-i586
compiler/ciReplay/TestInliningProtectionDomain.java 8349191 generic-all
compiler/ciReplay/TestIncrementalInlining.java 8349191 generic-all

compiler/startup/StartupOutput.java 8354404 generic-all

compiler/c2/TestVerifyConstraintCasts.java 8355574 generic-all

compiler/c2/irTests/TestFloat16ScalarOperations.java 8355708 linux-aarch64
Expand Down
2 changes: 1 addition & 1 deletion test/hotspot/jtreg/compiler/startup/StartupOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static void main(String[] args) throws Exception {

Process[] pr = new Process[200];
for (int i = 0; i < 200; i++) {
int initialCodeCacheSizeInKb = 800 + rand.nextInt(400);
int initialCodeCacheSizeInKb = 2000 + rand.nextInt(400);
int reservedCodeCacheSizeInKb = initialCodeCacheSizeInKb + rand.nextInt(200);
pb = ProcessTools.createLimitedTestJavaProcessBuilder("-XX:InitialCodeCacheSize=" + initialCodeCacheSizeInKb + "K", "-XX:ReservedCodeCacheSize=" + reservedCodeCacheSizeInKb + "k", "-version");
pr[i] = pb.start();
Expand Down