Add translations for various sub-directories
[binutils-gdb.git] / gdb / testsuite / gdb.dap / hover.exp
blobf637c4a06d108bb0353e094dca58aa65fb2e29a4
1 # Copyright 2023-2024 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # Test DAP "hover" evaluation.
18 require allow_dap_tests
20 load_lib dap-support.exp
22 standard_testfile
24 if {[build_executable ${testfile}.exp $testfile] == -1} {
25     return
28 if {[dap_initialize] == ""} {
29     return
32 set launch_id [dap_launch $testfile]
34 set line [gdb_get_line_number "BREAK"]
35 set obj [dap_check_request_and_response "set breakpoint by line number" \
36              setBreakpoints \
37              [format {o source [o path [%s]] breakpoints [a [o line [i %d]]]} \
38                   [list s $srcfile] $line]]
39 set line_bpno [dap_get_breakpoint_number $obj]
41 dap_check_request_and_response "configurationDone" configurationDone
43 dap_check_response "launch response" launch $launch_id
45 dap_wait_for_event_and_check "inferior started" thread "body reason" started
47 dap_wait_for_event_and_check "stopped at breakpoint" stopped \
48     "body reason" breakpoint \
49     "body hitBreakpointIds" $line_bpno
51 set obj [dap_check_request_and_response "evaluate global" \
52              evaluate {o expression [s global_variable]}]
53 dap_match_values "global value in function" [lindex $obj 0] \
54     "body result" 23
56 set obj [dap_check_request_and_response "evaluate global as hex" \
57              evaluate {o expression [s global_variable] format [o hex [l true]]}]
58 dap_match_values "global value in function as hex" [lindex $obj 0] \
59     "body result" 0x17
61 set obj [dap_check_request_and_response "evaluate global in hover mode" \
62              evaluate {o context [s hover] expression [s global_variable]}]
63 dap_match_values "global value in hover mode" [lindex $obj 0] \
64     "body result" 23
66 set obj [dap_request_and_response \
67              evaluate {o context [s hover] expression [s increment()]}]
68 gdb_assert {[dict get [lindex $obj 0] success] == "false"} \
69     "increment was rejected in hover mode"
71 dap_check_request_and_response "call increment" \
72     evaluate {o expression [s increment()]}
74 set obj [dap_request_and_response \
75              evaluate {o context [s hover] \
76                            expression [s "global_variable = -1"]}]
77 gdb_assert {[dict get [lindex $obj 0] success] == "false"} \
78     "assignment was rejected in hover mode"
80 set obj [dap_check_request_and_response "evaluate global again" \
81              evaluate {o expression [s global_variable]}]
82 dap_match_values "global value incremented once" [lindex $obj 0] \
83     "body result" 24
85 dap_shutdown