llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Ebuka Ezike (da-viper) <details> <summary>Changes</summary> Fixes #<!-- -->144072 buildbot error. --- Full diff: https://github.com/llvm/llvm-project/pull/144419.diff 1 Files Affected: - (modified) lldb/test/API/tools/lldb-dap/stepInTargets/TestDAP_stepInTargets.py (+7-1) ``````````diff diff --git a/lldb/test/API/tools/lldb-dap/stepInTargets/TestDAP_stepInTargets.py b/lldb/test/API/tools/lldb-dap/stepInTargets/TestDAP_stepInTargets.py index 51ccf2ccbdcad..05adfb3e342b0 100644 --- a/lldb/test/API/tools/lldb-dap/stepInTargets/TestDAP_stepInTargets.py +++ b/lldb/test/API/tools/lldb-dap/stepInTargets/TestDAP_stepInTargets.py @@ -90,7 +90,13 @@ def test_supported_capability_x86_arch(self): len(breakpoint_ids), len(bp_lines), "expect correct number of breakpoints" ) self.continue_to_breakpoints(breakpoint_ids) - is_supported = self.dap_server.get_capability("supportsStepInTargetsRequest") + + try: + is_supported = self.dap_server.get_capability( + "supportsStepInTargetsRequest" + ) + except dap_server.NotSupportedError: + is_supported = False self.assertEqual( is_supported, `````````` </details> https://github.com/llvm/llvm-project/pull/144419 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits