diff --git a/test/hotspot/jtreg/runtime/cds/appcds/VerifyWithDefaultArchive.java b/test/hotspot/jtreg/runtime/cds/appcds/VerifyWithDefaultArchive.java index 25fdbb1b6a1..0ac2d0b8f15 100644 --- a/test/hotspot/jtreg/runtime/cds/appcds/VerifyWithDefaultArchive.java +++ b/test/hotspot/jtreg/runtime/cds/appcds/VerifyWithDefaultArchive.java @@ -38,7 +38,7 @@ public class VerifyWithDefaultArchive { public static void main(String... args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xlog:cds", "-XX:+VerifySharedSpaces", "-version"); OutputAnalyzer out = new OutputAnalyzer(pb.start()); - out.shouldContain("OpenJDK"); + out.shouldNotContain("relocation bitmap CRC error"); out.shouldHaveExitValue(0); } }