1 # Copyright
1999-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 # test running programs
23 if {[prepare_for_testing
"failed to prepare" $testfile $srcfile debug]} {
28 #
set it up at a breakpoint so we can play with it
34 gdb_test
"break baz" ".*" ""
37 # Make sure we
get a
'completed' message when the target is done.
39 gdb_test_no_output
"set exec-done-display on"
41 # Test a background execution command. COMMAND is the command to
42 # send. BEFORE_PROMPT is the pattern expected before the GDB prompt
43 # is output. AFTER_PROMPT is the pattern expected after the prompt
44 # and before
"completed". MESSAGE is optional, and is the pass/fail
45 # message to br printed.
If omitted
, then the command string is used
47 proc test_background
{command before_prompt after_prompt
{message
""}} {
56 -re
"^$command\r\n${before_prompt}${gdb_prompt}${after_prompt}completed\.\r\n" {
60 -re
"$gdb_prompt.*completed\.\r\n" {
63 -re
".*Asynchronous execution not supported on this target\..*" {
64 unsupported
"asynchronous execution not supported: $message"
67 fail
"$message (timeout)"
73 if {[test_background
"next&" "" ".*z = 9.*"] < 0} {
77 test_background
"step&" "" ".*y = foo \\(\\).*" "step& #1"
79 test_background
"step&" "" " foo \\(\\) at .*async.c.*x = 5.*" "step& #2"
81 set is_stmt
[is_stmt_addresses $srcfile
]
83 #
Get the next instruction address.
85 set test
"get next insn"
86 gdb_test_multiple
{x
/2i $pc
} "$test" {
87 -re
"=> $hex .* 0x(\[0-9a-f\]*) .*$gdb_prompt $" {
88 set next_insn_addr $expect_out
(1,string
)
92 set next_insn_is_stmt
[hex_in_list $next_insn_addr $is_stmt
]
94 if { $next_insn_is_stmt
} {
97 # The current PC is printed out.
98 set prefix
"0x0*$next_insn_addr.*"
100 test_background
"stepi&" "" ".*$prefix x = 5; .*"
102 #
Get the next instruction address.
103 set next_insn_addr
""
104 set test
"get next insn, 2nd"
105 gdb_test_multiple
{x
/2i $pc
} "$test" {
106 -re
"=> $hex .* 0x(\[0-9a-f\]*) .*$gdb_prompt $" {
107 set next_insn_addr $expect_out
(1,string
)
111 set next_insn_is_stmt \
112 [expr
[lsearch
-regexp $is_stmt
0x0*$next_insn_addr
] != -1]
114 if { $next_insn_is_stmt
} {
117 # The current PC is printed out.
118 set prefix
"0x0*$next_insn_addr.*"
120 # We nexti into the same source line.
121 test_background
"nexti&" "" ".*$prefix x = 5; .*"
123 if { $next_insn_is_stmt
} {
126 # PC is in the middle of a source line
, so the PC address is displayed.
127 set prefix
"0x0*$next_insn_addr in "
129 test_background
"finish&" \
130 "Run till exit from #0 ${prefix}foo \\(\\) at.*async.c.*\r\n" \
131 ".*$hex in main \\(\\) at.*async.c.*y = foo \\(\\).*Value returned is.*= 8.*"
133 set jump_here
[gdb_get_line_number
"jump here"]
134 test_background
"jump $jump_here&" \
135 ".*Continuing at $hex.*" \
136 ".*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*" \
139 set until_here
[gdb_get_line_number
"until here"]
140 test_background
"until $until_here&" \
142 ".*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*" \
145 gdb_test_no_output
"set exec-done-display off"