Update copyright year range in header of all files managed by GDB
[binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-dprintf-pending.exp
blob9eb671ac701f8190fc49e69ccf5f9994813b9bdd
1 # Copyright 2015-2023 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This test checks if dprintf prints correctly when it's resolved from
17 # pending state.
18 # See PR breakpoints/16465.
20 load_lib mi-support.exp
22 if {[skip_shlib_tests]} {
23     return 0
26 standard_testfile mi-dprintf-pending.c
28 set libfile1 "mi-dprintf-pendshr"
29 set libsrc1  $srcdir/$subdir/$libfile1.c
30 set lib_sl1  [standard_output_file $libfile1.sl]
31 set lib_opts debug
32 set exec_opts [list debug shlib=$lib_sl1 shlib_load]
34 if {[gdb_compile_shlib $libsrc1 $lib_sl1 $lib_opts] != ""} {
35     untested "failed to compile shared library"
36     return -1
39 if {[gdb_compile $srcdir/$subdir/$srcfile $binfile executable $exec_opts] != ""} {
40     untested "failed to compile"
41     return -1
44 # Start with a fresh gdb.
45 gdb_exit
46 mi_gdb_start
47 mi_gdb_reinitialize_dir $srcdir/$subdir
48 mi_gdb_load ${binfile}
49 mi_load_shlibs $lib_sl1
51 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
53 # Set pending dprintf via MI.
54 mi_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"
58 mi_create_breakpoint $bp_location1 "mi insert breakpoint bp_location1" \
59     -type "breakpoint" -line $bp_location1 -file ".*$srcfile"
61 mi_run_cmd
63 set msg "mi dprintf"
64 gdb_expect {
65     -re ".*~\"hello\"" {
66         pass $msg
67     }
68     -re ".*$mi_gdb_prompt$" {
69         fail $msg
70     }
71     timeout {
72         fail $msg
73     }
75 mi_expect_stop ".*" "main" ".*" ".*$srcfile" "$bp_location1" "" "$msg stop"