1 # Copyright 2009-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/>.
18 if { [build_executable ${testfile}.exp "${testfile}" $srcfile {debug nowarnings}] } {
22 # Define the hook-stop that runs COMMANDS.
24 proc define_hook_stop {commands} {
25 set test "define hook-stop command"
26 gdb_test_multiple "define hook-stop" "$test" {
27 -re "Type commands for definition of \"hook-stop\".\r\nEnd with a line saying just \"end\".\r\n>$" {
28 gdb_test "$commands\nend" "" "$test"
33 # Restart GDB, run to main, set a breakpoint, and define a hook-stop
34 # that runs COMMANDS. If running to main fails, this returns to the
35 # caller's caller directly.
37 proc setup {commands} {
38 global srcfile binfile
40 clean_restart $binfile
46 gdb_test "break func" \
47 "Breakpoint.*at.* file .*$srcfile.*\\." \
48 "breakpoint line number"
50 define_hook_stop $commands
53 # Check that the hook-stop runs before the frame is printed.
55 proc hook_stop_before_frame {} {
56 with_test_prefix "hook-stop runs before frame print" {
59 setup "echo \"Hello.\""
61 set test "run hook-stop"
62 gdb_test_multiple "continue" "$test" {
63 -re "\"Hello\\.\"\r\nBreakpo.*func.*set breakpoint here.*${gdb_prompt} $" {
67 -re "Breakpo.*func.*set breakpoint here.*\"Hello\\.\".*${gdb_prompt} $" {
74 # Check that GDB gracefully handles the case of the inferior dying
75 # while running the hook-stop.
77 proc hook_stop_kill {} {
78 with_test_prefix "hook-stop kills inferior" {
84 gdb_test_no_output "set confirm off"
86 set test "run hook-stop"
87 gdb_test_multiple "continue" "$test" {
88 -re "Continuing.\r\n\\\[Inferior $decimal \\(.*\\) killed\\\]\r\n${gdb_prompt} $" {
93 gdb_test "info threads" "No threads.*"
97 # Check that GDB gracefully handles the case of the hook-stop
98 # continuing the inferior in the foreground.
100 proc hook_stop_continue_fg {} {
101 with_test_prefix "hook-stop runs continue" {
104 setup "if \$do_continue\nset \$do_continue = 0\ncontinue\nend"
106 gdb_test "print \$do_continue = 1" " = 1"
108 gdb_test "next" "Breakpoint.*func \\(\\) at .*set breakpoint here \\*/" \
109 "next triggering hook-stop"
111 gdb_test "next" "a = 2;" "next no hook-stop"
115 # Check that GDB gracefully handles the case of the hook-stop
116 # continuing the inferior in the background.
118 proc hook_stop_continue_bg {} {
119 with_test_prefix "hook-stop runs continue&" {
122 setup "if \$do_continue\nset \$do_continue = 0\ncontinue&\nend"
124 gdb_test "print \$do_continue = 1" " = 1"
126 set test "run hook-stop"
127 gdb_test_multiple "continue" "$test" {
128 -re "Continuing.\r\n.*${gdb_prompt} " {
133 set test "inferior exits normally"
134 gdb_test_multiple "" "$test" {
135 -re "exited normally" {
139 gdb_test "info threads" "No threads.*"
143 # Check that GDB gracefully handles the case of the hook-stop running
144 # "next". GDB used to print the stop event twice.
146 proc hook_stop_next {} {
147 with_test_prefix "hook-stop runs next" {
152 set test "run hook-stop"
153 gdb_test_multiple "continue" "$test" {
154 -re "a = 2.*a = 2${gdb_prompt} $" {
157 -re "a = 2.*${gdb_prompt} $" {
164 hook_stop_before_frame
166 hook_stop_continue_fg
167 hook_stop_continue_bg