xfail for gcc tests due to pr17499 (regressions due to r191966).
authorAshok Thirumurthi <ashok.thirumurthi@intel.com>
Mon, 7 Oct 2013 21:00:29 +0000 (21:00 +0000)
committerAshok Thirumurthi <ashok.thirumurthi@intel.com>
Mon, 7 Oct 2013 21:00:29 +0000 (21:00 +0000)
llvm-svn: 192132

lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py

index 74e5fa8..39b94f0 100644 (file)
@@ -21,6 +21,7 @@ class StdListDataFormatterTestCase(TestBase):
 
     @dwarf_test
     @expectedFailureLinux('llvm.org/pr15301', ['icc']) # LLDB prints incorrect sizes of STL containers
+    @expectedFailureGcc # llvm.org/pr17499 The data formatter cannot parse STL containers
     def test_with_dwarf_and_run_command(self):
         """Test data formatter commands."""
         self.buildDwarf()
index c577270..773ce6e 100644 (file)
@@ -22,6 +22,7 @@ class StdVectorDataFormatterTestCase(TestBase):
     @dwarf_test
     @expectedFailureClang # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers
     @expectedFailureIcc # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers
+    @expectedFailureGcc # llvm.org/pr17499 The data formatter cannot parse STL containers
     def test_with_dwarf_and_run_command(self):
         """Test data formatter commands."""
         if "gcc" in self.getCompiler() and "4.8" in self.getCompilerVersion():