Update copyright year range in all GDB files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.gdb / complaints.exp
CommitLineData
42a4f53d 1# Copyright 2002-2019 Free Software Foundation, Inc.
54951bd7
AC
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
54951bd7 6# (at your option) any later version.
e22f8b7c 7#
54951bd7
AC
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.
e22f8b7c 12#
54951bd7 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
54951bd7 15
54951bd7
AC
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
c95aea6b 20load_lib selftest-support.exp
54951bd7 21
c0b9f2c6
PA
22if [target_info exists gdb,noinferiorio] {
23 verbose "Skipping because of no inferiorio capabilities."
24 return
25}
26
4d30e432
PA
27# Similar to gdb_test_stdio, except no \r\n is expected before
28# $gdb_prompt in the $gdb_spawn_id.
54951bd7 29
4d30e432
PA
30proc test_complaint {test inferior_io_re msg} {
31 global inferior_spawn_id gdb_spawn_id
54951bd7
AC
32 global gdb_prompt
33
4d30e432
PA
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
56proc test_initial_complaints { } {
54951bd7
AC
57 # Unsupress complaints
58 gdb_test "set stop_whining = 2"
59
ff1cf532
TT
60 gdb_test_no_output "set var \$cstr = \"Register a complaint\""
61
54951bd7 62 # Prime the system
62d7ae92 63 gdb_test_stdio \
ff1cf532 64 "call complaint_internal (\$cstr)" \
5ca8c39f 65 "During symbol reading: Register a complaint"
54951bd7 66
54951bd7 67 # Re-issue the first message #1
62d7ae92 68 gdb_test_stdio \
ff1cf532 69 "call complaint_internal (\$cstr)" \
5ca8c39f 70 "During symbol reading: Register a complaint"
54951bd7 71
54951bd7 72 # Add a second complaint, expect it
62d7ae92 73 gdb_test_stdio \
b98664d3 74 "call complaint_internal (\"Testing! Testing! Testing!\")" \
5ca8c39f 75 "During symbol reading: Testing. Testing. Testing."
54951bd7 76
54951bd7
AC
77 return 0
78}
79
9dd34b2b
AC
80# Check that nothing comes out when there haven't been any real
81# complaints. Note that each test is really checking the previous
82# command.
83
84proc test_empty_complaint { cmd msg } {
85 global gdb_prompt
4d30e432
PA
86 global inferior_spawn_id gdb_spawn_id
87
88 if {$gdb_spawn_id == $inferior_spawn_id} {
89 gdb_test_no_output $cmd $msg
90 } else {
91 set seen_output 0
92 gdb_test_multiple $cmd $msg {
93 -i $inferior_spawn_id -re "." {
94 set seen_output 1
95 exp_continue
96 }
97 -i $gdb_spawn_id "$gdb_prompt $" {
98 gdb_assert !$seen_output $msg
99 }
9dd34b2b 100 }
9dd34b2b 101 }
9dd34b2b
AC
102}
103
104proc test_empty_complaints { } {
105
5ca8c39f
TT
106 test_empty_complaint "call clear_complaints()" \
107 "clear complaints"
9dd34b2b
AC
108
109 return 0
110}
111
c95aea6b
TT
112do_self_tests captured_command_loop {
113 test_initial_complaints
c95aea6b 114 test_empty_complaints
54951bd7 115}
This page took 1.70777 seconds and 4 git commands to generate.