8234696: tools/jlink/plugins/VendorInfoPluginsTest.java times out

Reviewed-by: mchung, clanger
This commit is contained in:
Arno Zeller 2019-12-02 17:10:02 +01:00
parent b31e91cd8d
commit f67111067e

View File

@ -83,6 +83,7 @@ public class VendorInfoPluginsTest {
+ (System.getProperty("os.name").startsWith("Windows")
? ".exe" : "")).toString();
var oa = ProcessTools.executeProcess(launcher,
"-Xmx64m",
"-XshowSettings:properties",
"--version");
oa.stderrShouldMatch("^ +java.vendor.url.bug = " + BUG_URL + "$");
@ -92,6 +93,8 @@ public class VendorInfoPluginsTest {
// VM error log
oa = ProcessTools.executeProcess(launcher,
"-Xmx64m",
"-XX:-CreateCoredumpOnCrash",
"--class-path",
System.getProperty("test.classes"),
"VendorInfoPluginsTest$Crasher");