1 # Copyright
1999-2019 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
30 if ![runto_main
] then {
31 perror
"couldn't run to breakpoint"
35 gdb_test
"break baz" ".*" ""
38 # Make sure we
get a
'completed' message when the target is done.
40 gdb_test_no_output
"set exec-done-display on"
42 # Test a background execution command. COMMAND is the command to
43 # send. BEFORE_PROMPT is the pattern expected before the GDB prompt
44 # is output. AFTER_PROMPT is the pattern expected after the prompt
45 # and before
"completed". MESSAGE is optional, and is the pass/fail
46 # message to br printed.
If omitted
, then the command string is used
48 proc test_background
{command before_prompt after_prompt
{message
""}} {
57 -re
"^$command\r\n${before_prompt}${gdb_prompt}${after_prompt}completed\.\r\n" {
61 -re
"$gdb_prompt.*completed\.\r\n" {
64 -re
".*Asynchronous execution not supported on this target\..*" {
65 unsupported
"asynchronous execution not supported: $message"
68 fail
"$message (timeout)"
74 if {[test_background
"next&" "" ".*z = 9.*"] < 0} {
78 test_background
"step&" "" ".*y = foo \\(\\).*" "step& #1"
80 test_background
"step&" "" " foo \\(\\) at .*async.c.*x = 5.*" "step& #2"
82 test_background
"stepi&" "" ".*$hex.*x = 5.*"
84 #
Get the next instruction address.
86 set test
"get next insn"
87 gdb_test_multiple
{x
/2i $pc
} "$test" {
88 -re
"=> $hex .* 0x(\[0-9a-f\]*) .*$gdb_prompt $" {
89 set next_insn_addr $expect_out
(1,string
)
94 # We nexti into the same source line. The current PC is printed out.
95 test_background
"nexti&" "" ".* 0x0*$next_insn_addr.* x = 5; .*"
97 # PC is in the middle of a source line
, so the PC address is displayed.
98 test_background
"finish&" \
99 "Run till exit from #0 $hex in foo \\(\\) at.*async.c.*\r\n" \
100 ".*$hex in main \\(\\) at.*async.c.*y = foo \\(\\).*Value returned is.*= 8.*"
102 set jump_here
[gdb_get_line_number
"jump here"]
103 test_background
"jump $jump_here&" \
104 ".*Continuing at $hex.*" \
105 ".*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*" \
108 set until_here
[gdb_get_line_number
"until here"]
109 test_background
"until $until_here&" \
111 ".*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*" \
114 gdb_test_no_output
"set exec-done-display off"