]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/dprintf.exp
2013-04-23 Hui Zhu <hui@codesourcery.com>
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / dprintf.exp
CommitLineData
28e7fd62 1# Copyright (C) 2012-2013 Free Software Foundation, Inc.
e7e0cddf
SS
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
17if { [prepare_for_testing dprintf.exp "dprintf" {} {debug}] } {
18 return -1
19}
20
21set srcfile dprintf.c
22
23set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
24set dp_location1 [gdb_get_line_number "set dprintf 1 here"]
25
01429c8e
JK
26if ![runto main] {
27 return -1
28}
e7e0cddf
SS
29
30gdb_test "dprintf" "Format string required"
31
32gdb_test "dprintf foo" "Format string required"
33
34gdb_test "dprintf 29" "Format string required"
35
36delete_breakpoints
37
38gdb_breakpoint "main"
39
40gdb_test "dprintf foo,\"At foo entry\\n\"" \
41 "Dprintf .*"
42
43gdb_test "dprintf $dp_location1,\"arg=%d, g=%d\\n\", arg, g" \
44 "Dprintf .*"
45
5bf480a5 46gdb_test_sequence "info breakpoints" "dprintf info 1" {
04164e8e 47 "\[\r\n\]Num Type Disp Enb Address +What"
5bf480a5
YQ
48 "\[\r\n\]2 breakpoint"
49 "\[\r\n\]3 dprintf"
50 "\[\r\n\] printf \"At foo entry\\\\n\""
51 "\[\r\n\] continue"
52 "\[\r\n\]4 dprintf"
53 "\[\r\n\] printf \"arg=%d, g=%d\\\\n\", arg, g"
54 "\[\r\n\] continue"
55}
56
e7e0cddf
SS
57gdb_test "break $bp_location1" \
58 "Breakpoint .*"
59
60gdb_run_cmd
61
62gdb_test "" "Breakpoint"
63
64gdb_test "continue" "At foo entry.*arg=1234, g=1234.*" "1st dprintf, gdb"
65
66gdb_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
70if ![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
d3ce09f5
SS
99set target_can_dprintf 1
100set msg "Set dprintf style to agent"
101gdb_test_multiple "set dprintf-style agent" $msg {
f9cf0f4a 102 -re "warning: Target cannot run dprintf commands.*\r\n$gdb_prompt $" {
d3ce09f5
SS
103 set target_can_dprintf 0
104 pass "$msg - cannot do"
105 }
106 -re ".*$gdb_prompt $" {
107 pass "$msg - can do"
108 }
109}
110
111if $target_can_dprintf {
112
113 gdb_run_cmd
114
115 gdb_test "" "Breakpoint"
116
117 gdb_test "continue" "Breakpoint \[0-9\]+, foo .*" "1st dprintf, agent"
118
119 gdb_test "continue" "Breakpoint \[0-9\]+, foo .*" "2nd dprintf, agent"
120
5bf480a5 121 gdb_test_sequence "info breakpoints" "dprintf info 2" {
96811e3b 122 "\[\r\n\]Num Type Disp Enb Address +What"
5bf480a5
YQ
123 "\[\r\n\]2 breakpoint"
124 "\[\r\n\]\tbreakpoint already hit 2 times"
125 "\[\r\n\]3 dprintf"
126 "\[\r\n\]\tbreakpoint already hit 2 times"
127 "\[\r\n\] agent-printf \"At foo entry\\\\n\""
128 "\[\r\n\]4 dprintf"
129 "\[\r\n\]\tbreakpoint already hit 2 times"
130 "\[\r\n\] agent-printf \"arg=%d, g=%d\\\\n\", arg, g"
131 }
d3ce09f5
SS
132}
133
e7e0cddf
SS
134gdb_test "set dprintf-style foobar" "Undefined item: \"foobar\"." \
135 "Set dprintf style to an unrecognized type"
136