From d122baec226e438031e56efa398f666d80a39b74 Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Wed, 17 Jan 2018 19:25:12 +0000 Subject: [PATCH] Try again to mark TestRdar12408181.py as skipped rdar://36417163 llvm-svn: 322740 --- .../test/lang/objc/rdar-12408181/TestRdar12408181.py | 10 +++++++--- 1 file 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 3126efa07b45..c41cef4e8b4f 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__)