From b65219881da29426978dee581ee0f0e844711e95 Mon Sep 17 00:00:00 2001 From: Yi Yang Date: Tue, 30 Mar 2021 14:45:55 +0000 Subject: [PATCH] 8264429: Test runtime/cds/appcds/VerifyWithDefaultArchive.java assumes OpenJDK build Reviewed-by: dcubed, shade --- .../jtreg/runtime/cds/appcds/VerifyWithDefaultArchive.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }