Skip to content

Commit 993951b

Browse files
committedOct 12, 2023
8316464: 3 sun/tools tests ignore VM flags
Reviewed-by: sspitsyn, cjplummer
1 parent 17535c3 commit 993951b

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed
 

‎test/jdk/sun/tools/jcmd/TestProcessHelper.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@
5050
* @test
5151
* @bug 8205654
5252
* @summary Unit test for sun.tools.ProcessHelper class. The test launches Java processes with different Java options
53-
* and checks that sun.tools.ProcessHelper.getMainClass(pid) method returns a correct main class. return a .
53+
* and checks that sun.tools.ProcessHelper.getMainClass(pid) method returns a correct main class.
5454
*
55+
* @requires vm.flagless
5556
* @requires os.family == "linux"
5657
* @modules jdk.jcmd/sun.tools.common:+open
5758
* java.base/jdk.internal.classfile

‎test/jdk/sun/tools/jinfo/JInfoTest.java

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -60,9 +60,8 @@ private static void setFlag() throws Exception {
6060
LingeredApp app1 = new JInfoTestLingeredApp();
6161
LingeredApp app2 = new JInfoTestLingeredApp();
6262
try {
63-
String[] params = new String[0];;
64-
LingeredApp.startAppExactJvmOpts(app1, params);
65-
LingeredApp.startAppExactJvmOpts(app2, params);
63+
LingeredApp.startApp(app1);
64+
LingeredApp.startApp(app2);
6665
OutputAnalyzer output = jinfo("-flag", "MinHeapFreeRatio=1", "JInfoTestLingeredApp");
6766
output.shouldHaveExitValue(0);
6867
output = jinfo("-flag", "MinHeapFreeRatio", "JInfoTestLingeredApp");
@@ -89,9 +88,8 @@ private static void classNameMatch() throws Exception {
8988
LingeredApp app1 = new JInfoTestLingeredApp();
9089
LingeredApp app2 = new JInfoTestLingeredApp();
9190
try {
92-
String[] params = new String[0];
93-
LingeredApp.startAppExactJvmOpts(app1, params);
94-
LingeredApp.startAppExactJvmOpts(app2, params);
91+
LingeredApp.startApp(app1);
92+
LingeredApp.startApp(app2);
9593
OutputAnalyzer output = jinfo("JInfoTestLingeredApp");
9694
output.shouldHaveExitValue(0);
9795
// "Runtime Environment" written once per proc

‎test/jdk/sun/tools/jstat/JStatInterval.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,7 @@
2424
/**
2525
* @test
2626
* @bug 8035668
27+
* @requires vm.flagless
2728
* @library /test/lib
2829
* @summary Test checks case when target application finishes execution and jstat didn't complete work.
2930
jstat is started with interval = 100 (jstat -compiler 100) and monitored application finishes
@@ -60,9 +61,7 @@ public static void main(String[] args) {
6061
}
6162
}
6263
public static void main(String[] args) throws Exception {
63-
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
64-
"-cp",
65-
System.getProperty("test.class.path"),
64+
ProcessBuilder pb = ProcessTools.createTestJvm(
6665
"-XX:+UsePerfData",
6766
Application.class.getName()
6867
);

0 commit comments

Comments
 (0)
Please sign in to comment.