diff options
author | Pavel Labath <labath@google.com> | 2015-12-16 12:09:45 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-12-16 12:09:45 +0000 |
commit | 25e241b006559ec6cb188ac32fb7fba0f358bc1b (patch) | |
tree | 2d5f44039d9bc9fe87938fb5072b6dce95f1ec08 /lldb/packages/Python/lldbsuite/test/issue_verification | |
parent | 48568cbe18020b64d2cce24b0804fd36295738d5 (diff) | |
download | bcm5719-llvm-25e241b006559ec6cb188ac32fb7fba0f358bc1b.tar.gz bcm5719-llvm-25e241b006559ec6cb188ac32fb7fba0f358bc1b.zip |
[test] Add ability to expect timeouts
Summary:
This adds ability to mark test that do not complete due to hangs, crashes, etc., as "expected",
to avoid flagging the build red for a known problem. Functionally, this extends the scope of the
existing expectedFailureXXX decorators to cover these states as well. Once this is in, I will
start replacing the magic list of failing tests in dosep.py with our regular annotations which
should hopefully make code simpler.
Reviewers: tfiala
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D15530
llvm-svn: 255763
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/issue_verification')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park b/lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park index 2453581231f..67db8149f85 100644 --- a/lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park +++ b/lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park @@ -10,6 +10,7 @@ class ExpectedTimeoutTestCase(lldbtest.TestBase): """Forces test timeout.""" mydir = lldbtest.TestBase.compute_mydir(__file__) + @lldbtest.expectedFailureAll() def test_buildbot_sees_expected_timeout(self): """Tests that expected timeout logic kicks in and is picked up.""" while True: |