8217748: [TESTBUG] Exclude TestSig test case from JFR TestShutdownEvent

Excluded TestSig cases from the test

Reviewed-by: egahlin
This commit is contained in:
Mikhailo Seledtsov 2019-01-24 14:22:50 -08:00
parent 7b1b9f10a1
commit 24d55e104b

View File

@ -61,9 +61,11 @@ public class TestShutdownEvent {
new TestVMCrash(), new TestVMCrash(),
new TestUnhandledException(), new TestUnhandledException(),
new TestRuntimeHalt(), new TestRuntimeHalt(),
new TestSig("TERM"), // exclude until JDK-8217744 is fixed
new TestSig("HUP"), // new TestSig("TERM"),
new TestSig("INT")}; // new TestSig("HUP"),
// new TestSig("INT")
};
public static void main(String[] args) throws Throwable { public static void main(String[] args) throws Throwable {
for (int i = 0; i < subTests.length; ++i) { for (int i = 0; i < subTests.length; ++i) {