--- old/test/hotspot/jtreg/runtime/appcds/jigsaw/PatchModule/Simple.java 2018-04-02 14:11:57.207633689 -0700 +++ new/test/hotspot/jtreg/runtime/appcds/jigsaw/PatchModule/Simple.java 2018-04-02 14:11:56.935608056 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -68,14 +68,17 @@ "-Xlog:class+load", "-Xlog:class+path=info", "PatchMain", "javax.naming.spi.NamingManager"); - TestCommon.checkDump(output, "Loading classes to share"); + output.shouldHaveExitValue(1) + .shouldContain("Cannot use the following option when dumping the shared archive: --patch-module"); - TestCommon.run( + output = TestCommon.execCommon( "-XX:+UnlockDiagnosticVMOptions", "--patch-module=java.naming=" + moduleJar, "-Xlog:class+load", "-Xlog:class+path=info", - "PatchMain", "javax.naming.spi.NamingManager") - .assertNormalExit("I pass!"); + "PatchMain", "javax.naming.spi.NamingManager"); + output.shouldHaveExitValue(0) + .shouldContain("CDS is disabled") + .shouldContain("I pass!"); } }