This commit is contained in:
Michael Fang 2013-10-29 15:32:04 -07:00
commit c3aba9e8c8
2 changed files with 7 additions and 2 deletions

View File

@ -35,7 +35,7 @@ import jdk.testlibrary.ProcessTools;
/**
* @test
* @bug 6434402 8004926
* @library ../../../../lib/testlibrary
* @library /lib/testlibrary
* @build TestManager TestApplication CustomLauncherTest
* @run main CustomLauncherTest
* @author Jaroslav Bachorik

View File

@ -35,7 +35,7 @@ import java.util.concurrent.atomic.AtomicReference;
/**
* @test
* @library ../../../../lib/testlibrary
* @library /lib/testlibrary
* @bug 5016507 6173612 6319776 6342019 6484550 8004926
* @summary Start a managed VM and test that a management tool can connect
* without connection or username/password details.
@ -108,6 +108,8 @@ public class LocalManagementTest {
"=com.sun.management.jmxremote.port=7775," +
"com.sun.management.jmxremote.authenticate=false," +
"com.sun.management.jmxremote.ssl=false",
"-cp",
TEST_CLASSES,
"TestApplication",
"-exit"
);
@ -160,6 +162,9 @@ public class LocalManagementTest {
private static boolean doTest(String arg) throws Exception {
List<String> args = new ArrayList<>();
args.add("-cp");
args.add(TEST_CLASSES);
if (arg != null) {
args.add(arg);
}