diff options
author | Pavel Labath <labath@google.com> | 2016-03-16 10:39:33 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-03-16 10:39:33 +0000 |
commit | d3fe3aa57f1f2ddc51462f049c4f42d60823070b (patch) | |
tree | 352d88c12e65c4959581196b47d5bd163ae3a6fc /lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py | |
parent | 2a35ff0687555c6f705712ace5fe91437650e3ae (diff) | |
download | bcm5719-llvm-d3fe3aa57f1f2ddc51462f049c4f42d60823070b.tar.gz bcm5719-llvm-d3fe3aa57f1f2ddc51462f049c4f42d60823070b.zip |
Switch from unittest2.expectedFailure to our own decorator on TestSTL
the main reason is that our decorator contains extra fluff to "expect" crashes (which seem to
happen occasionaly on the android buildbot).
llvm-svn: 263633
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py index a917aaae6a2..e2582085702 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py @@ -24,8 +24,7 @@ class STLTestCase(TestBase): self.source = 'main.cpp' self.line = line_number(self.source, '// Set break point at this line.') - # rdar://problem/10400981 - @unittest2.expectedFailure + @expectedFailureAll(bugnumber="rdar://problem/10400981") def test(self): """Test some expressions involving STL data types.""" self.build() |