[PATCH 5/57][Arm][GAS] Add support for MVE instructions: vmull{b,t}
[binutils-gdb.git] / gdb / testsuite / gdb.base / dprintf.exp
blobc1e276ab443dc69eca910990b857f2db5b5aebb2
1 #   Copyright (C) 2012-2019 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 standard_testfile
18 if { [prepare_for_testing "failed to prepare" $testfile $srcfile] } {
19     return -1
22 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
23 set dp_location1 [gdb_get_line_number "set dprintf 1 here"]
25 if ![runto main] {
26     return -1
29 gdb_test "dprintf" "Format string required"
31 gdb_test "dprintf foo" "Format string required"
33 gdb_test "dprintf 29" "Format string required"
35 delete_breakpoints
37 gdb_breakpoint "main"
39 gdb_test "dprintf foo,\"At foo entry\\n\"" \
40   "Dprintf .*"
42 gdb_test "ignore \$bpnum 1" ".*Will ignore next crossing of breakpoint.*"
44 gdb_test "dprintf $dp_location1,\"arg=%d, g=%d\\n\", arg, g" \
45   "Dprintf .*"
47 gdb_test_sequence "info breakpoints" "dprintf info 1" {
48     "\[\r\n\]Num     Type           Disp Enb Address +What"
49     "\[\r\n\]2       breakpoint"
50     "\[\r\n\]3       dprintf"
51     "\[\r\n\]        printf \"At foo entry\\\\n\""
52     "\[\r\n\]4       dprintf"
53     "\[\r\n\]        printf \"arg=%d, g=%d\\\\n\", arg, g"
56 gdb_test "break $bp_location1" \
57   "Breakpoint .*"
59 gdb_run_cmd
61 gdb_test "" "Breakpoint"
63 gdb_test "continue" "arg=1234, g=1234.*" "1st dprintf, gdb"
65 gdb_test "continue" "At foo entry.*arg=1235, g=2222.*" "2nd dprintf, gdb"
67 # Restart GDB and set set up for testing.
69 proc restart {} {
70     global binfile
71     global bp_location1 dp_location1
73     clean_restart $binfile
75     if ![runto main] {
76         return -1
77     }
79     gdb_test "dprintf foo,\"At foo entry\\n\"" \
80         "Dprintf .*"
82     gdb_test "dprintf $dp_location1,\"arg=%d, g=%d\\n\", arg, g" \
83         "Dprintf .*"
85     gdb_test "break $bp_location1" "Breakpoint .*"
88 # Test continuing across a dprintf.  PATTERN matches the output
89 # generated by the dprintf.  MSG is used as test message.
91 proc test_dprintf {pattern msg} {
92     gdb_test_stdio "continue" $pattern "" "$msg"
95 # Test the "call" style.
97 proc test_call {} {
98     global binfile
99     global bp_location1
101     # Now switch styles and rerun; in the absence of redirection the
102     # output should be the same.
104     with_test_prefix "printf" {
105         restart
107         gdb_test_no_output "set dprintf-style call" "set dprintf style to call"
109         test_dprintf "At foo entry.*arg=1234, g=1234\r\n" "1st dprintf"
111         test_dprintf "At foo entry.*arg=1235, g=2222\r\n" "2nd dprintf"
112     }
114     with_test_prefix "fprintf" {
115         restart
117         gdb_test_no_output "set dprintf-function fprintf" "set dprintf function"
118         gdb_test_no_output "set dprintf-channel stderr" "set dprintf channel"
120         gdb_test_no_output "set dprintf-style call" "set dprintf style to call"
122         test_dprintf "At foo entry.*arg=1234, g=1234\r\n" "1st dprintf"
124         test_dprintf "At foo entry.*arg=1235, g=2222\r\n" "2nd dprintf"
125     }
128 # The "call" style depends on having I/O functions available.
130 if ![target_info exists gdb,noinferiorio] {
131     with_test_prefix "call" {
132         test_call
133     }
136 # Test the "agent" style.
138 proc test_agent {} {
139     global binfile
140     global gdb_prompt
142     restart
144     set target_can_dprintf 1
145     set msg "set dprintf style to agent"
146     gdb_test_multiple "set dprintf-style agent" $msg {
147         -re "warning: Target cannot run dprintf commands.*\r\n$gdb_prompt $" {
149             # The target reports that it doesn't support target side
150             # commands at all.
151             set target_can_dprintf 0
152             unsupported "$msg"
153         }
154         -re ".*$gdb_prompt $" {
155             pass "$msg"
156         }
157     }
159     if !$target_can_dprintf {
160         return
161     }
163     # Even if the the target reports that it does support target side
164     # commands, we can only tell that it supports them in combination
165     # with a particular breakpoint type (Z0, Z1, etc.) when we try to
166     # insert the breakpoint.  When "set breakpoint always-inserted is
167     # off", that'll be on next continue.
168     set msg "1st dprintf"
169     gdb_test_multiple "continue" $msg {
170         -re "Warning:.*Target doesn't support breakpoints that have target side commands.*\r\n$gdb_prompt $" {
171             set target_can_dprintf 0
172             unsupported "$msg"
173         }
174         -re "Breakpoint \[0-9\]+, foo .*$gdb_prompt $" {
175             pass "$msg"
176         }
177     }
179     if $target_can_dprintf {
180         gdb_test "continue" "Breakpoint \[0-9\]+, foo .*" "2nd dprintf"
182         gdb_test_sequence "info breakpoints" "dprintf info" {
183             "\[\r\n\]Num     Type           Disp Enb Address +What"
184             "\[\r\n\]1       breakpoint"
185             "\[\r\n\]\tbreakpoint already hit 1 time"
186             "\[\r\n\]2       dprintf"
187             "\[\r\n\]        agent-printf \"At foo entry\\\\n\""
188             "\[\r\n\]3       dprintf"
189             "\[\r\n\]        agent-printf \"arg=%d, g=%d\\\\n\", arg, g"
190             "\[\r\n\]4       breakpoint"
191             "\[\r\n\]\tbreakpoint already hit 2 times"
192         }
193     }
196 with_test_prefix "agent" {
197     test_agent
200 gdb_test "set dprintf-style foobar" "Undefined item: \"foobar\"." \
201     "Set dprintf style to an unrecognized type"
203 # Test that force-disabling the BreakpointCommands RSP feature works
204 # as expected.  dprintf relies on support for target-side breakpoint
205 # commands --- use it as proxy.
206 if [gdb_is_target_remote] {
207     gdb_test_no_output "set remote breakpoint-commands-packet off"
208     gdb_test "set dprintf-style agent" \
209         "warning: Target cannot run dprintf commands.*" \
210         "set dprintf-style agent, with feature disabled"