]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-dprintf-pending.exp
gdb/testsuite: remove unneeded calls to get_compiler_info
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-dprintf-pending.exp
CommitLineData
4a94e368 1# Copyright 2015-2022 Free Software Foundation, Inc.
98aa42ee
AT
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 test checks if dprintf prints correctly when it's resolved from
17# pending state.
18# See PR breakpoints/16465.
19
20load_lib mi-support.exp
21
22if {[skip_shlib_tests]} {
23 return 0
24}
25
26standard_testfile mi-dprintf-pending.c
27
28set libfile1 "mi-dprintf-pendshr"
29set libsrc1 $srcdir/$subdir/$libfile1.c
30set lib_sl1 [standard_output_file $libfile1.sl]
31set lib_opts debug
32set exec_opts [list debug shlib=$lib_sl1 shlib_load]
33
98aa42ee 34if {[gdb_compile_shlib $libsrc1 $lib_sl1 $lib_opts] != ""} {
84c93cd5 35 untested "failed to compile shared library"
98aa42ee
AT
36 return -1
37}
38
39if {[gdb_compile $srcdir/$subdir/$srcfile $binfile executable $exec_opts] != ""} {
84c93cd5 40 untested "failed to compile"
98aa42ee
AT
41 return -1
42}
43
44# Start with a fresh gdb.
45gdb_exit
46mi_gdb_start
47mi_gdb_reinitialize_dir $srcdir/$subdir
48mi_gdb_load ${binfile}
49mi_load_shlibs $lib_sl1
50
51set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
52
53# Set pending dprintf via MI.
54mi_gdb_test "-dprintf-insert -f pendfunc1 \"hello\"" \
55 ".*\\^done,bkpt={number=\"1\",type=\"dprintf\",disp=\"keep\",enabled=\"y\",addr=\"<PENDING>\",pending=\"pendfunc1\",times=\"0\",original-location=\"pendfunc1\"}" \
56 "mi set dprintf"
57
58mi_create_breakpoint $bp_location1 "mi insert breakpoint bp_location1" \
3f469b17 59 -type "breakpoint" -line $bp_location1 -file ".*$srcfile"
98aa42ee
AT
60
61mi_run_cmd
62
63set msg "mi dprintf"
64gdb_expect {
65 -re ".*~\"hello\"" {
66 pass $msg
67 }
68 -re ".*$mi_gdb_prompt$" {
69 fail $msg
70 }
71 timeout {
72 fail $msg
73 }
74}
75mi_expect_stop ".*" "main" ".*" ".*$srcfile" "$bp_location1" "" "$msg stop"