8217748: [TESTBUG] Exclude TestSig test case from JFR TestShutdownEvent
Summary: Excluded TestSig cases from the test
Reviewed-by: egahlin
--- a/test/jdk/jdk/jfr/event/runtime/TestShutdownEvent.java Thu Jan 24 14:19:25 2019 -0800
+++ b/test/jdk/jdk/jfr/event/runtime/TestShutdownEvent.java Thu Jan 24 14:22:50 2019 -0800
@@ -61,9 +61,11 @@
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) {