diff options
author | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-07-19 20:22:43 +0000 |
---|---|---|
committer | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-07-19 20:22:43 +0000 |
commit | d4b5a0f53ffbf9cf15d6b9d8a0efcb2464933d12 (patch) | |
tree | 1875fe62582691a8b31b5a354f8621d2181a836b | |
parent | c1c44f62bc0a1c4b2c187b94aafbe7b569af076d (diff) | |
download | bcm5719-llvm-d4b5a0f53ffbf9cf15d6b9d8a0efcb2464933d12.tar.gz bcm5719-llvm-d4b5a0f53ffbf9cf15d6b9d8a0efcb2464933d12.zip |
Reworked the test decorators to match the test results on the buildbots.
llvm-svn: 186717
-rw-r--r-- | lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py | 2 | ||||
-rw-r--r-- | lldb/test/functionalities/type_completion/TestTypeCompletion.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py b/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py index 4dd465074f4..ae61f996fa9 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py @@ -20,7 +20,7 @@ class StdVectorDataFormatterTestCase(TestBase): self.data_formatter_commands() @dwarf_test - @expectedFailureGcc(15301, ["==", "4.6.3"]) # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers + @expectedFailureClang # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers def test_with_dwarf_and_run_command(self): """Test data formatter commands.""" self.buildDwarf() diff --git a/lldb/test/functionalities/type_completion/TestTypeCompletion.py b/lldb/test/functionalities/type_completion/TestTypeCompletion.py index 8f03742119f..57ee91d7223 100644 --- a/lldb/test/functionalities/type_completion/TestTypeCompletion.py +++ b/lldb/test/functionalities/type_completion/TestTypeCompletion.py @@ -21,7 +21,7 @@ class TypeCompletionTestCase(TestBase): @dwarf_test @expectedFailureIcc # often fails with 'NameAndAddress should be valid' - @expectedFailureGcc(15301, [">", "4.6"]) # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers + # Fails with gcc 4.8.1 with llvm.org/pr15301 LLDB prints incorrect sizes of STL containers def test_with_dwarf_and_run_command(self): """Check that types only get completed when necessary.""" self.buildDwarf() |