提交 d3dcddea 编写于 作者: J jbachorik

8031420: sun/management/jmxremote/bootstrap/CustomLauncherTest.java fails on...

8031420: sun/management/jmxremote/bootstrap/CustomLauncherTest.java fails on some platforms: Unable to locate 'libjvm.so'
Reviewed-by: sla, chegar, sjiang
上级 df3b685c
......@@ -91,6 +91,12 @@ public class CustomLauncherTest {
return;
}
if (getPlatform() == null) {
System.out.println("Test not designed to run on this operating " +
"system (" + OSNAME + "), skipping...");
return;
}
final FileSystem FS = FileSystems.getDefault();
Path libjvmPath = findLibjvm(FS);
......@@ -223,8 +229,7 @@ public class CustomLauncherTest {
break;
}
default: {
System.out.println("Test not designed to run on this operating " +
"system (" + OSNAME + "), skipping...");
platform = null;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册