diff options
author | Vedant Kumar <vsk@apple.com> | 2018-01-17 19:25:12 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2018-01-17 19:25:12 +0000 |
commit | d122baec226e438031e56efa398f666d80a39b74 (patch) | |
tree | d1484bb2f4b9beec8fc98b7a36f9c8c2807c3dd4 /lldb/packages/Python/lldbsuite | |
parent | d7008692355f5029ffc6360d25574e65613d63af (diff) | |
download | bcm5719-llvm-d122baec226e438031e56efa398f666d80a39b74.tar.gz bcm5719-llvm-d122baec226e438031e56efa398f666d80a39b74.zip |
Try again to mark TestRdar12408181.py as skipped
rdar://36417163
llvm-svn: 322740
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py b/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py index 3126efa07b4..c41cef4e8b4 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py +++ b/lldb/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__) |