8217748: [TESTBUG] Exclude TestSig test case from JFR TestShutdownEvent
authormseledtsov
Thu, 24 Jan 2019 14:22:50 -0800
changeset 53481 d02f1f4ff3a6
parent 53480 3448b92b13fb
child 53482 771b50dd0b08
8217748: [TESTBUG] Exclude TestSig test case from JFR TestShutdownEvent Summary: Excluded TestSig cases from the test Reviewed-by: egahlin
test/jdk/jdk/jfr/event/runtime/TestShutdownEvent.java
--- 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) {