Skip to content

Commit 86b27b7

Browse files
Yi-Fan TsaiDavid Holmes
Yi-Fan Tsai
authored and
David Holmes
committed
8317831: compiler/codecache/CheckLargePages.java fails on OL 8.8 with unexpected memory string
Reviewed-by: eastigeevich, dholmes
1 parent 3cd65ce commit 86b27b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/hotspot/jtreg/ProblemList.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ compiler/vectorapi/VectorLogicalOpIdentityTest.java 8302459 linux-x64,windows-x6
7272

7373
compiler/jvmci/TestUncaughtErrorInCompileMethod.java 8309073 generic-all
7474

75-
compiler/codecache/CheckLargePages.java 8317831 linux-x64
75+
compiler/codecache/CheckLargePages.java 8319795 linux-x64
7676

7777
compiler/floatingpoint/TestSubnormalFloat.java 8317810 generic-i586
7878
compiler/floatingpoint/TestSubnormalDouble.java 8317810 generic-i586

test/hotspot/jtreg/compiler/codecache/CheckLargePages.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static void main(String[] args) throws Exception {
6262
out.shouldMatch("Code cache size too small for \\S* pages\\. Reverting to smaller page size \\((\\S*)\\)\\.");
6363
out.shouldHaveExitValue(0);
6464
// Parse page sizes to find next biggest page
65-
String sizes = out.firstMatch("Usable page sizes:(.*)", 1);
65+
String sizes = out.firstMatch("Usable page sizes:([^.]+)", 1);
6666
List<Long> sizeList = Arrays.stream(sizes.trim().split("\\s*,\\s*")).map(CheckLargePages::parseMemoryString).sorted().toList();
6767
final int smallerPageSizeIndex = sizeList.indexOf(largePageSize) - 1;
6868
Asserts.assertGreaterThanOrEqual(smallerPageSizeIndex, 0);

0 commit comments

Comments
 (0)