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 TestUnhandledException(),
new TestRuntimeHalt(),
new TestSig("TERM"),
new TestSig("HUP"),
new TestSig("INT")};
// exclude until JDK-8217744 is fixed
// new TestSig("TERM"),
// new TestSig("HUP"),
// new TestSig("INT")
};
public static void main(String[] args) throws Throwable {
for (int i = 0; i < subTests.length; ++i) {