Skip to content

Commit 0fd8071

Browse files
committed
8317738: CodeCacheFullCountTest failed with "VirtualMachineError: Out of space in CodeCache for method handle intrinsic"
Reviewed-by: kvn
1 parent 1161e3d commit 0fd8071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static void runTest() throws Throwable {
6767
"-XX:ReservedCodeCacheSize=2496k", "-XX:-UseCodeCacheFlushing", "-XX:-MethodFlushing", "CodeCacheFullCountTest", "WasteCodeCache");
6868
OutputAnalyzer oa = ProcessTools.executeProcess(pb);
6969
// Ignore adapter creation failures
70-
if (oa.getExitValue() != 0 && !oa.getOutput().contains("Out of space in CodeCache for adapters")) {
70+
if (oa.getExitValue() != 0 && !oa.getOutput().contains("Out of space in CodeCache")) {
7171
oa.reportDiagnosticSummary();
7272
throw new RuntimeException("VM finished with exit code " + oa.getExitValue());
7373
}

0 commit comments

Comments
 (0)