test/hotspot/jtreg/runtime/appcds/ProhibitedPackage.java
changeset 49162 c200b4700aeb
parent 49008 d777541fceba
child 51507 3e3764f8fe36
--- a/test/hotspot/jtreg/runtime/appcds/ProhibitedPackage.java	Sat Feb 03 10:36:58 2018 +0800
+++ b/test/hotspot/jtreg/runtime/appcds/ProhibitedPackage.java	Sat Feb 24 22:42:37 2018 -0800
@@ -34,6 +34,7 @@
  * @run main ProhibitedPackage
  */
 
+import jdk.test.lib.cds.CDSOptions;
 import jdk.test.lib.Platform;
 import jdk.test.lib.process.OutputAnalyzer;
 
@@ -85,7 +86,8 @@
         output = TestCommon.execAuto(
             "-XX:+UnlockDiagnosticVMOptions", "-XX:+WhiteBoxAPI",
             "-cp", appJar, "-Xlog:class+load=info", "ProhibitedHelper");
-        TestCommon.checkExec(output, "Prohibited package name: java.lang");
+        CDSOptions opts = (new CDSOptions()).setXShareMode("auto");
+        TestCommon.checkExec(output, opts, "Prohibited package name: java.lang");
 
         // -Xshare:off
         output = TestCommon.execOff(