diff options
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py | 4 |
1 files changed, 3 insertions, 1 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 c41cef4e8b4..28f230107fd 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 @@ -19,7 +19,6 @@ from lldbsuite.test import lldbutil # 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__) @@ -35,6 +34,9 @@ class Rdar12408181TestCase(TestBase): def test_nswindow_count(self): """Test that we are able to find out how many children NSWindow has.""" + + self.skipTest("Skipping this test due to timeout flakiness") + d = {'EXE': self.exe_name} self.build(dictionary=d) self.setTearDownCleanup(dictionary=d) |