update copyright year range in GDB files
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.gdb / complaints.exp
1 # Copyright 2002-2017 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 # This file was written by Andrew Cagney (cagney at redhat dot com),
17 # derived from xfullpath.exp (written by Joel Brobecker), derived from
18 # selftest.exp (written by Rob Savoye).
19
20 load_lib selftest-support.exp
21
22 if [target_info exists gdb,noinferiorio] {
23 verbose "Skipping because of no inferiorio capabilities."
24 return
25 }
26
27 # Similar to gdb_test_stdio, except no \r\n is expected before
28 # $gdb_prompt in the $gdb_spawn_id.
29
30 proc test_complaint {test inferior_io_re msg} {
31 global inferior_spawn_id gdb_spawn_id
32 global gdb_prompt
33
34 set inferior_matched 0
35 set gdb_matched 0
36
37 gdb_test_multiple $test $msg {
38 -i $inferior_spawn_id -re "$inferior_io_re" {
39 set inferior_matched 1
40 if {!$gdb_matched} {
41 exp_continue
42 }
43 }
44 -i $gdb_spawn_id -re "$gdb_prompt $" {
45 set gdb_matched 1
46 if {!$inferior_matched} {
47 exp_continue
48 }
49 }
50 }
51
52 verbose -log "inferior_matched=$inferior_matched, gdb_matched=$gdb_matched"
53 gdb_assert {$inferior_matched && $gdb_matched} $msg
54 }
55
56 proc test_initial_complaints { } {
57 # Unsupress complaints
58 gdb_test "set stop_whining = 2"
59
60 # Prime the system
61 gdb_test_stdio "call complaint (&symfile_complaints, \"Register a complaint\")" \
62 "During symbol reading, Register a complaint."
63
64 # Check that the complaint was inserted and where
65 gdb_test "print symfile_complaints->root->fmt" \
66 ".\[0-9\]+ =.*\"Register a complaint\""
67
68 # Re-issue the first message #1
69 gdb_test_stdio "call complaint (&symfile_complaints, symfile_complaints->root->fmt)" \
70 "During symbol reading, Register a complaint."
71
72 # Check that there is only one thing in the list. How the boolean
73 # result is output depends on whether GDB is built as a C or C++
74 # program.
75 gdb_test "print symfile_complaints->root->next == &complaint_sentinel" \
76 ".\[0-9\]+ = \(1|true\)" "list has one entry"
77
78 # Add a second complaint, expect it
79 gdb_test_stdio "call complaint (&symfile_complaints, \"Testing! Testing! Testing!\")" \
80 "During symbol reading, Testing. Testing. Testing.."
81
82 return 0
83 }
84
85 proc test_serial_complaints { } {
86 gdb_test_exact "call clear_complaints (&symfile_complaints, 1, 0)" "" "serial start"
87
88 # Prime the system
89 test_complaint "call complaint (&symfile_complaints, \"serial line 1\")" \
90 "During symbol reading...serial line 1..." \
91 "serial line 1"
92
93 # Add a second complaint, expect it
94 test_complaint "call complaint (&symfile_complaints, \"serial line 2\")" \
95 "serial line 2..." \
96 "serial line 2"
97
98 gdb_test_stdio "call clear_complaints (&symfile_complaints, 1, 0)" \
99 "\r\n" \
100 "" \
101 "serial end"
102
103 return 0
104 }
105
106 # For short complaints, all are the same
107
108 proc test_short_complaints { } {
109 gdb_test_exact "call clear_complaints (&symfile_complaints, 1, 1)" "" "short start"
110
111 # Prime the system
112 test_complaint "call complaint (&symfile_complaints, \"short line 1\")" \
113 "short line 1..." \
114 "short line 1"
115
116 # Add a second complaint, expect it
117 test_complaint "call complaint (&symfile_complaints, \"short line 2\")" \
118 "short line 2..." \
119 "short line 2"
120
121 gdb_test_stdio "call clear_complaints (&symfile_complaints, 1, 0)" \
122 "\r\n" \
123 "" \
124 "short end"
125
126 return 0
127 }
128
129 # Check that nothing comes out when there haven't been any real
130 # complaints. Note that each test is really checking the previous
131 # command.
132
133 proc test_empty_complaint { cmd msg } {
134 global gdb_prompt
135 global inferior_spawn_id gdb_spawn_id
136
137 if {$gdb_spawn_id == $inferior_spawn_id} {
138 gdb_test_no_output $cmd $msg
139 } else {
140 set seen_output 0
141 gdb_test_multiple $cmd $msg {
142 -i $inferior_spawn_id -re "." {
143 set seen_output 1
144 exp_continue
145 }
146 -i $gdb_spawn_id "$gdb_prompt $" {
147 gdb_assert !$seen_output $msg
148 }
149 }
150 }
151 }
152
153 proc test_empty_complaints { } {
154
155 test_empty_complaint "call clear_complaints(&symfile_complaints,0,0)" \
156 "empty non-verbose non-noisy clear"
157 test_empty_complaint "call clear_complaints(&symfile_complaints,1,0)" \
158 "empty verbose non-noisy clear"
159 test_empty_complaint "call clear_complaints(&symfile_complaints,1,1)" \
160 "empty verbose noisy clear"
161 test_empty_complaint "call clear_complaints(&symfile_complaints,0,1)" \
162 "empty non-verbose noisy clear"
163
164 return 0
165 }
166
167 do_self_tests captured_command_loop {
168 test_initial_complaints
169 test_serial_complaints
170 test_short_complaints
171 test_empty_complaints
172 }
This page took 0.036388 seconds and 4 git commands to generate.