8152679: DeadlockDetectionTest.java fails due to expected output missing
authordsamersoff
Sat, 09 Apr 2016 12:15:13 +0300
changeset 37443 1ac0e91a0f53
parent 37439 e8970711113b
child 37444 16caac2c1d9b
8152679: DeadlockDetectionTest.java fails due to expected output missing Summary: Detect OS X and bailout Reviewed-by: sspitsyn, tbell
hotspot/test/serviceability/sa/DeadlockDetectionTest.java
--- a/hotspot/test/serviceability/sa/DeadlockDetectionTest.java	Thu Apr 07 22:03:04 2016 -0700
+++ b/hotspot/test/serviceability/sa/DeadlockDetectionTest.java	Sat Apr 09 12:15:13 2016 +0300
@@ -80,6 +80,12 @@
             return;
         }
 
+        if (Platform.isOSX()) {
+            // Coredump stackwalking is not implemented for Darwin
+            System.out.println("This test is not expected to work on OS X. Skipping");
+            return;
+        }
+
 
         if (!LingeredApp.isLastModifiedWorking()) {
             // Exact behaviour of the test depends on operating system and the test nature,