9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /*
25 * @test
26 * @bug 8022865
27 * @summary Tests for different combination of UseCompressedOops options
28 * @library /test/lib
29 * @ignore 8079353
30 * @modules java.base/jdk.internal.misc
31 * java.management
32 * @run main UseCompressedOops
33 */
34 import java.util.ArrayList;
35 import java.util.Collections;
36 import jdk.test.lib.Platform;
37 import jdk.test.lib.process.ProcessTools;
38 import jdk.test.lib.process.OutputAnalyzer;
39
40 public class UseCompressedOops {
41
42 public static void main(String[] args) throws Exception {
43 testCompressedOopsModesGCs();
44 testCompressedOopsModesGCs("-XX:+UseLargePages");
45 }
46
47 public static void testCompressedOopsModesGCs(String... flags) throws Exception {
48 ArrayList<String> args = new ArrayList<>();
49 Collections.addAll(args, flags);
|
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /*
25 * @test
26 * @bug 8022865
27 * @summary Tests for different combination of UseCompressedOops options
28 * @library /test/lib
29 * @modules java.base/jdk.internal.misc
30 * java.management
31 * @run main UseCompressedOops
32 */
33 import java.util.ArrayList;
34 import java.util.Collections;
35 import jdk.test.lib.Platform;
36 import jdk.test.lib.process.ProcessTools;
37 import jdk.test.lib.process.OutputAnalyzer;
38
39 public class UseCompressedOops {
40
41 public static void main(String[] args) throws Exception {
42 testCompressedOopsModesGCs();
43 testCompressedOopsModesGCs("-XX:+UseLargePages");
44 }
45
46 public static void testCompressedOopsModesGCs(String... flags) throws Exception {
47 ArrayList<String> args = new ArrayList<>();
48 Collections.addAll(args, flags);
|