diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py index 3b54d59..6299caf 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py @@ -344,7 +344,12 @@ class DAPTestCaseBase(TestBase): granularity="statement", timeout=DEFAULT_TIMEOUT, ): - self.dap_server.request_next(threadId=threadId, granularity=granularity) + response = self.dap_server.request_next( + threadId=threadId, granularity=granularity + ) + self.assertTrue( + response["success"], f"next request failed: response {response}" + ) if waitForStop: return self.dap_server.wait_for_stopped(timeout) return None |