diff options
author | Vince Harron <vince@nethacker.com> | 2015-06-26 15:13:21 +0000 |
---|---|---|
committer | Vince Harron <vince@nethacker.com> | 2015-06-26 15:13:21 +0000 |
commit | 7ac3ea424bd671a62918fffebffb1dedc5f43336 (patch) | |
tree | 32ff06e73c92e7b748b2cf6b04d738960d6f3e21 /lldb/test/lang/cpp | |
parent | c2ae76737753a55f18a290f1e64f8bca60423449 (diff) | |
download | bcm5719-llvm-7ac3ea424bd671a62918fffebffb1dedc5f43336.tar.gz bcm5719-llvm-7ac3ea424bd671a62918fffebffb1dedc5f43336.zip |
Added expectedFlakey test decorator
SUMMARY
Flakey tests get two chances to pass
Also, switched a bunch of tests to use new decorator.
TEST PLAN
Add one of these decorators to a test
Edit a test to pass on the first invocation, confirm test appears as pass
Edit a test to pass on the first invocation, pass on the second, confirm test appears as xfail
Edit a test to fail on two consecutive runs, confirm test appears in results as fail/error
Differential Revision: http://reviews.llvm.org/D10721
llvm-svn: 240789
Diffstat (limited to 'lldb/test/lang/cpp')
-rw-r--r-- | lldb/test/lang/cpp/this/TestCPPThis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lang/cpp/this/TestCPPThis.py b/lldb/test/lang/cpp/this/TestCPPThis.py index 32d60779f1a..b6621e56d53 100644 --- a/lldb/test/lang/cpp/this/TestCPPThis.py +++ b/lldb/test/lang/cpp/this/TestCPPThis.py @@ -22,7 +22,7 @@ class CPPThisTestCase(TestBase): @expectedFailureGcc # llvm.org/pr15439 The 'this' pointer isn't available during expression evaluation when stopped in an inlined member function. @expectedFailureIcc # ICC doesn't emit correct DWARF inline debug info for inlined member functions @dwarf_test - @expectedFailureClang(bugnumber='llvm.org/pr23012', compiler_version=['>=','3.6'])#xfail to get buildbot green, test failed with totclang - clang3.7 + @expectedFlakeyClang(bugnumber='llvm.org/pr23012', compiler_version=['>=','3.6']) # failed with totclang - clang3.7 def test_with_dwarf_and_run_command(self): """Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods""" self.buildDwarf() |