Index: packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py =================================================================== --- packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py +++ packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py @@ -23,6 +23,7 @@ # Find the line number to break at. self.line = line_number('main.cpp', '// Set break point at this line.') + @expectedFailureAll(bugnumber="rdar://31611463") @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24462, Data formatters have problems on Windows") Index: packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py =================================================================== --- packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py +++ packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py @@ -23,6 +23,7 @@ self.namespace = 'std::__' + ns + '1' @add_test_categories(["libc++"]) + @expectedFailureAll(bugnumber="rdar://31611463") def test_with_run_command(self): """Test that that file and class static variables display correctly.""" self.build() Index: packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py =================================================================== --- packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py +++ packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py @@ -24,6 +24,7 @@ self.namespace = 'std::__' + ns + '1' @add_test_categories(["libc++"]) + @expectedFailureAll(bugnumber="rdar://31611463") def test_with_run_command(self): """Test that that file and class static variables display correctly.""" self.build() Index: packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py =================================================================== --- packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py +++ packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py @@ -28,6 +28,7 @@ return var.GetType().GetCanonicalType().GetName() @add_test_categories(["libc++"]) + @expectedFailureAll(bugnumber="rdar://31611463") def test_with_run_command(self): """Test that that file and class static variables display correctly.""" self.build() Index: packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py =================================================================== --- packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py +++ packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py @@ -23,6 +23,7 @@ self.namespace = 'std::__' + ns + '1' @add_test_categories(["libc++"]) + @expectedFailureAll(bugnumber="rdar://31611463") def test_with_run_command(self): self.build() self.runCmd("file a.out", CURRENT_EXECUTABLE_SET) Index: packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py =================================================================== --- packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py +++ packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py @@ -18,6 +18,7 @@ mydir = TestBase.compute_mydir(__file__) @add_test_categories(["libc++"]) + @expectedFailureAll(bugnumber="rdar://31611463") def test_with_run_command(self): """Test that that file and class static variables display correctly.""" self.build()