summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2018-01-17 20:54:39 +0000
committerVedant Kumar <vsk@apple.com>2018-01-17 20:54:39 +0000
commit75d7ee6af579fe9f2624ae016c9fdad2d1192559 (patch)
tree3814cd59ac3d5344f586d2d0a6545fb2e62b3808 /lldb/packages/Python/lldbsuite/test
parenteac2b47b9fcd7386943a4085c68e8830e22e43f3 (diff)
downloadbcm5719-llvm-75d7ee6af579fe9f2624ae016c9fdad2d1192559.tar.gz
bcm5719-llvm-75d7ee6af579fe9f2624ae016c9fdad2d1192559.zip
A third attempt to mark TestRdar12408181.py as skipped
Due to an unfortunate difference between the open source test harness and our internal harness, applying two @skip... decorators to this test works in the internal build but not in the open source build. I've tried another approach to skipping this test and tested it out with the open source harness. Hopefully this sticks! rdar://36417163 llvm-svn: 322756
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py4
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)
OpenPOWER on IntegriCloud