[Lldb-commits] [lldb] 65a7ebf - [lldb] XFAIL TestVSCode_breakpointEvents.py on Ventura

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 29 15:01:02 PDT 2022


Author: Jonas Devlieghere
Date: 2022-06-29T15:00:57-07:00
New Revision: 65a7ebff33428f1b9941e23fd79167d30d642b7b

URL: https://github.com/llvm/llvm-project/commit/65a7ebff33428f1b9941e23fd79167d30d642b7b
DIFF: https://github.com/llvm/llvm-project/commit/65a7ebff33428f1b9941e23fd79167d30d642b7b.diff

LOG: [lldb] XFAIL TestVSCode_breakpointEvents.py on Ventura

TestVSCode_breakpointEvents.py is failing on macOS Ventura because we
receive 3 breakpoint events instead of one. This is likely the result of
dyld moving into the shared cache.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-vscode/breakpoint-events/TestVSCode_breakpointEvents.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-vscode/breakpoint-events/TestVSCode_breakpointEvents.py b/lldb/test/API/tools/lldb-vscode/breakpoint-events/TestVSCode_breakpointEvents.py
index 483684e562ef7..13c14024a15df 100644
--- a/lldb/test/API/tools/lldb-vscode/breakpoint-events/TestVSCode_breakpointEvents.py
+++ b/lldb/test/API/tools/lldb-vscode/breakpoint-events/TestVSCode_breakpointEvents.py
@@ -16,6 +16,7 @@ class TestVSCode_breakpointEvents(lldbvscode_testcase.VSCodeTestCaseBase):
 
     @skipIfWindows
     @skipUnlessDarwin
+    @expectedFailureAll(macos_version=[">=", "10.16"])
     def test_breakpoint_events(self):
         '''
             This test sets a breakpoint in a shared library and runs and stops


        


More information about the lldb-commits mailing list