File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ compiler/codecache/jmx/PoolsIndependenceTest.java 8264632 macosx-x64
67
67
68
68
compiler/onSpinWait/TestOnSpinWaitAArch64DefaultFlags.java 8277503 linux-aarch64
69
69
70
+ compiler/codecache/CheckLargePages.java 8319795 linux-x64
70
71
71
72
#############################################################################
72
73
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public static void main(String[] args) throws Exception {
62
62
out .shouldMatch ("Code cache size too small for \\ S* pages\\ . Reverting to smaller page size \\ ((\\ S*)\\ )\\ ." );
63
63
out .shouldHaveExitValue (0 );
64
64
// 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 );
66
66
List <Long > sizeList = Arrays .stream (sizes .trim ().split ("\\ s*,\\ s*" )).map (CheckLargePages ::parseMemoryString ).sorted ().toList ();
67
67
final int smallerPageSizeIndex = sizeList .indexOf (largePageSize ) - 1 ;
68
68
Asserts .assertGreaterThanOrEqual (smallerPageSizeIndex , 0 );
You can’t perform that action at this time.
0 commit comments