]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/dprintf.exp
Update Copyright year range in all files maintained by GDB.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / dprintf.exp
1 # Copyright (C) 2012-2014 Free Software Foundation, Inc.
2
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.
7 #
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.
12 #
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/>.
15
16
17 if { [prepare_for_testing dprintf.exp "dprintf" {} {debug}] } {
18 return -1
19 }
20
21 set srcfile dprintf.c
22
23 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
24 set dp_location1 [gdb_get_line_number "set dprintf 1 here"]
25
26 if ![runto main] {
27 return -1
28 }
29
30 gdb_test "dprintf" "Format string required"
31
32 gdb_test "dprintf foo" "Format string required"
33
34 gdb_test "dprintf 29" "Format string required"
35
36 delete_breakpoints
37
38 gdb_breakpoint "main"
39
40 gdb_test "dprintf foo,\"At foo entry\\n\"" \
41 "Dprintf .*"
42
43 gdb_test "ignore \$bpnum 1" ".*Will ignore next crossing of breakpoint.*"
44
45 gdb_test "dprintf $dp_location1,\"arg=%d, g=%d\\n\", arg, g" \
46 "Dprintf .*"
47
48 gdb_test_sequence "info breakpoints" "dprintf info 1" {
49 "\[\r\n\]Num Type Disp Enb Address +What"
50 "\[\r\n\]2 breakpoint"
51 "\[\r\n\]3 dprintf"
52 "\[\r\n\] printf \"At foo entry\\\\n\""
53 "\[\r\n\]4 dprintf"
54 "\[\r\n\] printf \"arg=%d, g=%d\\\\n\", arg, g"
55 }
56
57 gdb_test "break $bp_location1" \
58 "Breakpoint .*"
59
60 gdb_run_cmd
61
62 gdb_test "" "Breakpoint"
63
64 gdb_test "continue" "arg=1234, g=1234.*" "1st dprintf, gdb"
65
66 gdb_test "continue" "At foo entry.*arg=1235, g=2222.*" "2nd dprintf, gdb"
67
68 # The "call" style depends on having I/O functions available, so test.
69
70 if ![target_info exists gdb,noinferiorio] {
71
72 # Now switch styles and rerun; in the absence of redirection the
73 # output should be the same.
74
75 gdb_test_no_output "set dprintf-style call" "Set dprintf style to call"
76
77 gdb_run_cmd
78
79 gdb_test "" "Breakpoint"
80
81 gdb_test "continue" "At foo entry.*arg=1234, g=1234.*" "1st dprintf, call"
82
83 gdb_test "continue" "At foo entry.*arg=1235, g=2222.*" "2nd dprintf, call"
84
85 gdb_test_no_output "set dprintf-function fprintf" "Set dprintf function"
86 gdb_test_no_output "set dprintf-channel stderr" "Set dprintf channel"
87
88 gdb_run_cmd
89
90 gdb_test "" "Breakpoint"
91
92 gdb_test "continue" "At foo entry.*arg=1234, g=1234.*" \
93 "1st dprintf, fprintf"
94
95 gdb_test "continue" "At foo entry.*arg=1235, g=2222.*" \
96 "2nd dprintf, fprintf"
97 }
98
99 set target_can_dprintf 1
100 set msg "Set dprintf style to agent"
101 gdb_test_multiple "set dprintf-style agent" $msg {
102 -re "warning: Target cannot run dprintf commands.*\r\n$gdb_prompt $" {
103 set target_can_dprintf 0
104 pass "$msg - cannot do"
105 }
106 -re ".*$gdb_prompt $" {
107 pass "$msg - can do"
108 }
109 }
110
111 if $target_can_dprintf {
112 gdb_run_cmd
113
114 gdb_test "" "Breakpoint"
115
116 gdb_test "continue" "Breakpoint \[0-9\]+, foo .*" "1st dprintf, agent"
117
118 gdb_test "continue" "Breakpoint \[0-9\]+, foo .*" "2nd dprintf, agent"
119
120 gdb_test_sequence "info breakpoints" "dprintf info 2" {
121 "\[\r\n\]Num Type Disp Enb Address +What"
122 "\[\r\n\]2 breakpoint"
123 "\[\r\n\]\tbreakpoint already hit 2 times"
124 "\[\r\n\]3 dprintf"
125 "\[\r\n\]\tbreakpoint already hit 2 times"
126 "\[\r\n\] agent-printf \"At foo entry\\\\n\""
127 "\[\r\n\]4 dprintf"
128 "\[\r\n\]\tbreakpoint already hit 2 times"
129 "\[\r\n\] agent-printf \"arg=%d, g=%d\\\\n\", arg, g"
130 }
131 }
132
133 gdb_test "set dprintf-style foobar" "Undefined item: \"foobar\"." \
134 "Set dprintf style to an unrecognized type"