diff options
3 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/functionalities/asan/TestAsan.py b/lldb/test/functionalities/asan/TestAsan.py index c2442a23576..68adafa6109 100644 --- a/lldb/test/functionalities/asan/TestAsan.py +++ b/lldb/test/functionalities/asan/TestAsan.py @@ -24,6 +24,7 @@ class AsanTestCase(TestBase): self.buildDsym (None, compiler) self.asan_tests () + @expectedFailureFreeBSD("llvm.org/pr21136") # runtimes not yet available by default @skipIfRemote @dwarf_test def test_with_dwarf (self): diff --git a/lldb/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py b/lldb/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py index d3dc055fa9e..4063d788d48 100644 --- a/lldb/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py +++ b/lldb/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py @@ -21,6 +21,7 @@ class InlinedBreakpointsTestCase(TestBase): self.buildDsym() self.inlined_breakpoints() + @expectedFailureFreeBSD("llvm.org/pr21142") @dwarf_test def test_with_dwarf_and_run_command(self): """Test 'b basic_types.cpp:176' does break (where int.cpp includes basic_type.cpp).""" diff --git a/lldb/test/functionalities/object-file/TestImageListMultiArchitecture.py b/lldb/test/functionalities/object-file/TestImageListMultiArchitecture.py index 0c4b6149ed3..bcfe5ac160d 100644 --- a/lldb/test/functionalities/object-file/TestImageListMultiArchitecture.py +++ b/lldb/test/functionalities/object-file/TestImageListMultiArchitecture.py @@ -19,6 +19,7 @@ class TestImageListMultiArchitecture(TestBase): # Call super's setUp(). TestBase.setUp(self) + @expectedFailureFreeBSD("llvm.org/pr21135") def test_image_list_shows_multiple_architectures(self): """Test that image list properly shows the correct architecture for a set of different architecture object files.""" images = { |