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