Author: David Spickett Date: 2026-06-29T09:22:47Z New Revision: 1229188d8cde89c68d29734842c82e5799582dc8
URL: https://github.com/llvm/llvm-project/commit/1229188d8cde89c68d29734842c82e5799582dc8 DIFF: https://github.com/llvm/llvm-project/commit/1229188d8cde89c68d29734842c82e5799582dc8.diff LOG: [lldb][test] Skip TestBreakpointConditions.py on Windows on Arm (#206433) Has been failing a lot lately on the buildbot, see #206141. Which part fails seems to vary so I'm disabling all of it. Added: Modified: lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py Removed: ################################################################################ diff --git a/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py index a4c9c49bc89b6..d9f00af406b3d 100644 --- a/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py +++ b/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py @@ -7,7 +7,8 @@ from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil - +# Flaky on buildbot, https://github.com/llvm/llvm-project/issues/206141. +@skipIf(oslist=["windows"], archs=["aarch64"]) class BreakpointConditionsTestCase(TestBase): def test_breakpoint_condition_and_run_command(self): """Exercise breakpoint condition with 'breakpoint modify -c <expr> id'.""" _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
