diff options
author | Vedant Kumar <vsk@apple.com> | 2018-01-17 18:53:42 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2018-01-17 18:53:42 +0000 |
commit | cc9fd4b6617944ff19cb2faa505f6d23d4578e62 (patch) | |
tree | ccb5fee14cc1237b5d9e72c3bf31b9517fd05c61 /lldb/packages/Python/lldbsuite/test | |
parent | 54c3891328d4dcf2b86ba76ba2d1e8aaa97d380e (diff) | |
download | bcm5719-llvm-cc9fd4b6617944ff19cb2faa505f6d23d4578e62.tar.gz bcm5719-llvm-cc9fd4b6617944ff19cb2faa505f6d23d4578e62.zip |
Skip a flaky test (TestRdar12408181.py)
This test frequently times out on our bots. While we're investigating
the issue, mark the test as skipped so the builds aren't impacted as
much.
rdar://36417163
llvm-svn: 322728
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-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 d431e98ba79..3126efa07b4 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,7 +13,9 @@ from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil -@skipUnlessDarwin +# TODO: Switch back to @skipUnlessDarwin when the bug preventing the test app +# from launching is resolved. +@skipIf class Rdar12408181TestCase(TestBase): mydir = TestBase.compute_mydir(__file__) |