We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f4907 commit 71d1c21Copy full SHA for 71d1c21
lldb/test/API/tools/lldb-dap/gotoTargets/TestDAP_gotoTargets.py
@@ -71,6 +71,9 @@ def test_default(self):
71
self.dap_server.request_next(thread_id)
72
self.continue_to_next_stop()
73
74
+ # Verify that `var_1=10` and `var_2=40`. This combination is only possible by
75
+ # skipping execution of a line from the original program. Observing this combination
76
+ # hence proves that our `goto` request actually skipped execution of the code line.
77
var1_variable = self.dap_server.get_local_variable("var_1")
78
var_1_expected = {
79
"name": "var_1",
0 commit comments