diff -r 82d9d5744e5f -r d777541fceba test/hotspot/jtreg/runtime/SharedArchiveFile/DumpSharedDictionary.java --- a/test/hotspot/jtreg/runtime/SharedArchiveFile/DumpSharedDictionary.java Fri Feb 16 12:18:09 2018 +0100 +++ b/test/hotspot/jtreg/runtime/SharedArchiveFile/DumpSharedDictionary.java Thu Feb 15 11:39:42 2018 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2017, 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 @@ -25,9 +25,6 @@ * @test * @bug 8130072 * @summary Check that Shared Dictionary is printed out with jcmd - * Feature support: compressed oops/kptrs, 64-bit os, not on windows - * @requires vm.cds - * @requires (sun.arch.data.model != "32") & (os.family != "windows") * @requires vm.cds * @library /test/lib * @modules java.base/jdk.internal.misc @@ -47,7 +44,6 @@ ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./DumpSharedDictionary.jsa", - "-XX:+UseCompressedOops", "-Xshare:dump"); OutputAnalyzer out = CDSTestUtils.executeAndLog(pb, "dump"); @@ -58,7 +54,6 @@ pb = ProcessTools.createJavaProcessBuilder( "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./DumpSharedDictionary.jsa", - "-XX:+UseCompressedOops", "-Dtest.jdk=" + testjdkPath, "-Xshare:on", "DumpSharedDictionary", "test");