Merge
authormfang
Tue, 29 Oct 2013 15:32:04 -0700
changeset 21406 fa5ab3b676cf
parent 21405 1fa7f8b0fd81 (current diff)
parent 21404 0e54d286d846 (diff)
child 21407 235dbb8e031a
Merge
--- a/jdk/test/sun/management/jmxremote/bootstrap/CustomLauncherTest.java	Tue Oct 29 15:31:07 2013 -0700
+++ b/jdk/test/sun/management/jmxremote/bootstrap/CustomLauncherTest.java	Tue Oct 29 15:32:04 2013 -0700
@@ -35,7 +35,7 @@
 /**
  * @test
  * @bug 6434402 8004926
- * @library ../../../../lib/testlibrary
+ * @library /lib/testlibrary
  * @build TestManager TestApplication CustomLauncherTest
  * @run main CustomLauncherTest
  * @author Jaroslav Bachorik
--- a/jdk/test/sun/management/jmxremote/bootstrap/LocalManagementTest.java	Tue Oct 29 15:31:07 2013 -0700
+++ b/jdk/test/sun/management/jmxremote/bootstrap/LocalManagementTest.java	Tue Oct 29 15:32:04 2013 -0700
@@ -35,7 +35,7 @@
 
 /**
  * @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 @@
                 "=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 @@
 
     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);
         }