gdb/dwarf: create multiple cooked index shards when reading .debug_names
[binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-watch.exp
bloba5a442eb13ebcccdfdab70895894610f47a96f28
1 # Copyright 1999-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 Machine interface (MI) operations
18 # Test MI watchpoint commands.
20 # The goal is not to test gdb functionality, which is done by other
21 # tests, but to verify the correct output response to MI operations.
23 # The allow_hw_watchpoint_tests checks if watchpoints are supported by the
24 # processor.  On PowerPC, the check runs a small test program under gdb
25 # to determine if the Power processor supports HW watchpoints.  The check
26 # must be done before starting the test so as to not disrupt the execution
27 # of the actual test.
29 set allow_hw_watchpoint_tests_p [allow_hw_watchpoint_tests]
31 load_lib mi-support.exp
32 set MIFLAGS "-i=mi"
34 standard_testfile basics.c
36 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
37      untested "failed to compile"
38      return -1
41 proc test_watchpoint_creation_and_listing {} {
42     global mi_gdb_prompt
43     global srcfile
44     global hex
46     set line_callee4_head [gdb_get_line_number "callee4 ("]
47     set line_callee4_body [expr $line_callee4_head + 2]
49     # Insert a watchpoint and list
50     # Tests:
51     # -break-watch C
52     # -break-list
54     mi_gdb_test "111-break-watch C" \
55              "111\\^done,wpt=\{number=\"2\",exp=\"C\"\}" \
56              "break-watch operation"
58     mi_gdb_test "222-break-list" \
59             "222\\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[bkpt=\{number=\"2\",type=\".*watchpoint\",disp=\"keep\",enabled=\"y\",what=\"C\",thread-groups=\\\[\"i1\"\\\],times=\"0\",original-location=\"C\"\}\\\]\}" \
60                 "list of watchpoints"
64 # UNUSED at the time
65 proc test_awatch_creation_and_listing {} {
66     global mi_gdb_prompt
67     global srcfile
68     global hex
70     set line_main_head [gdb_get_line_number "main ("]
71     set line_main_body [expr $line_main_head + 2]
73     # Insert an access watchpoint and list it
74     # Tests:
75     # -break-watch -a A
76     # -break-list
78     mi_gdb_test "333-break-watch -a A" \
79              "333\\^done,bkpt=\{number=\"1\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_main_body\"\}" \
80              "break-watch -a operation"
82     mi_gdb_test "444-break-list" \
83             "444\\^done,BreakpointTable=\{.*,hdr=\\\[.*\\\],body=\\\[bkpt=\{number=\"3\",type=\"watchpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",thread-groups=\\\[\"i1\"\\\],times=\"0\"\},.*\}\\\]\}" \
84                 "list of watchpoints awatch"
86     mi_gdb_test "777-break-delete 3" \
87             "777\\^done" \
88             "delete access watchpoint"
91 # UNUSED at the time
92 proc test_rwatch_creation_and_listing {} {
93     global mi_gdb_prompt
94     global srcfile
95     global hex
97     set line_main_head [gdb_get_line_number "main ("]
98     set line_main_body [expr $line_main_head + 2]
100     # Insert a read watchpoint and list it.
101     # Tests:
102     # -break-watch -r B
103     # -break-list
105     mi_gdb_test "200-break-watch -r C" \
106              "200\\^done,bkpt=\{number=\"5\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"callee4\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\}" \
107              "break-watch -r operation"
109     mi_gdb_test "300-break-list" \
110             "300\\^done,BreakpointTable=\{.*,hdr=\\\[.*\\\],body=\\\[bkpt=\{number=\"5\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",thread-groups=\\\[\"i1\"\\\],times=\"0\"\},.*\}\\\}\}" \
111                 "list of breakpoints"
113     mi_gdb_test "177-break-delete 4" \
114             "177\\^done" \
115             "delete read watchpoint"
118 proc test_watchpoint_triggering {} {
119     global mi_gdb_prompt
120     global hex fullname_syntax srcfile
122     set line_callee4_return_0     [gdb_get_line_number "return 0;"]
123     set line_callee3_head         [gdb_get_line_number "callee3 ("]
124     set line_callee3_close_brace  [expr $line_callee3_head + 3]
126     # Continue execution until the watchpoint is reached,  continue again, 
127     # to see the watchpoint go out of scope.
128     # Does:
129     # -exec-continue (Here wp triggers)
130     # -exec-continue (Here wp goes out of scope)
132     mi_execute_to "exec-continue" "watchpoint-trigger" "callee4" "" \
133         ".*basics.c" $line_callee4_return_0 \
134         {"" "wpt=\{number=\"2\",exp=\"C\"\},value=\{old=\".*\",new=\"3\"\}"} \
135         "watchpoint trigger"
137     mi_execute_to "exec-continue" "watchpoint-scope" "callee3" ".*" \
138         ".*basics.c" $line_callee3_close_brace \
139         {"" "wpnum=\"2\""} \
140         "watchpoint scope"
143 proc test_watchpoint_all {mi_mode type} {
144     upvar srcdir srcdir
145     upvar subdir subdir
146     upvar binfile binfile
147     global allow_hw_watchpoint_tests_p
149     if {$type == "hw" && !$allow_hw_watchpoint_tests_p } {
150         return
151     }
153     if {$mi_mode == "separate"} {
154         set start_ops "separate-mi-tty"
155     } else {
156         set start_ops ""
157     }
158     if [mi_clean_restart ${binfile} $start_ops] {
159         return
160     }
162     if {$type == "sw"} {
163         set option 0
164     } else {
165         set option 1
166     }
167     mi_gdb_test "567-gdb-set can-use-hw-watchpoints $option" \
168         "567\\^done" \
169         "hw watchpoints toggle"
171     mi_runto callee4
172     test_watchpoint_creation_and_listing
173     #test_rwatch_creation_and_listing
174     #test_awatch_creation_and_listing
175     test_watchpoint_triggering
178 # Run the tests twice, once using software watchpoints, and another
179 # with hardware watchpoints.
180 foreach_mi_ui_mode mi-mode {
181     foreach_with_prefix wp-type {"sw" "hw"} {
182         test_watchpoint_all ${mi-mode} ${wp-type}
183     }