summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2018-01-17 19:25:12 +0000
committerVedant Kumar <vsk@apple.com>2018-01-17 19:25:12 +0000
commit9a1c172464d8d7cfbab399a2fbf198cddeef1320 (patch)
treef701bf479b3c4b16804578e618de8f0ad6e78f5e
parent664c4c207ffefa5f5705a9a5bf5a401e1cfa6f9e (diff)
Try again to mark TestRdar12408181.py as skipped
rdar://36417163 git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@322740 91177308-0d34-0410-b5e6-96231b3b80d8
-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__)