summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py')
-rw-r--r--packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py b/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
index 3126efa07..c41cef4e8 100644
--- a/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
+++ b/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
@@ -13,9 +13,13 @@ from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
-# TODO: Switch back to @skipUnlessDarwin when the bug preventing the test app
-# from launching is resolved.
-@skipIf
+# TODO: The Jenkins testers on OS X fail running this test because they don't
+# have access to WindowServer so NSWindow doesn't work. We should disable this
+# test if WindowServer isn't available.
+# Note: Simply applying the @skipIf decorator here confuses the test harness
+# and gives a spurious failure.
+@skipUnlessDarwin
+@skipIfDarwin
class Rdar12408181TestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)