Skip to content
Open
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: 1 addition & 1 deletion test/hotspot/jtreg/compiler/startup/StartupOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static void main(String[] args) throws Exception {

// On s390x, generated code is ~6x larger in fastdebug and ~1.4x in release builds vs. other archs,
// hence we require slightly more minimum space.
int minInitialSize = 2000 + (Platform.isS390x() ? 800 : 0);
int minInitialSize = 1300 + (Platform.isS390x() ? 800 : 0);
for (int i = 0; i < 50; i++) {
int initialCodeCacheSizeInKb = minInitialSize + rand.nextInt(400);
int reservedCodeCacheSizeInKb = initialCodeCacheSizeInKb + rand.nextInt(200);
Expand Down