1 # Copyright 1999-2014 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 [get_compiler_info] {
27 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
28 untested $testfile.exp
32 ########################################
34 ## Don't do any of these tests until we reach consensus on this file.
37 ########################################
41 gdb_reinitialize_dir $srcdir/$subdir
44 gdb_test_no_output "set target-async on"
47 # set it up at a breakpoint so we can play with it
49 if ![runto_main] then {
50 perror "couldn't run to breakpoint"
54 gdb_test "break baz" ".*" ""
57 # Make sure we get a 'completed' message when the target is done.
59 gdb_test_no_output "set exec-done-display on"
64 -re "^next&\r\n$gdb_prompt.*z = 9.*completed\.\r\n" { pass "next &" }
65 -re "$gdb_prompt.*completed\.$" { fail "next &" }
66 timeout { fail "(timeout) next &" }
71 -re "^step&\r\n$gdb_prompt.*y = foo \\(\\).*completed\.\r\n" { pass "step &" }
72 -re "$gdb_prompt.*completed\.$" { fail "step &" }
73 timeout { fail "(timeout) step &" }
78 -re "^step&\r\n$gdb_prompt foo \\(\\) at .*async.c.*x = 5.*completed\.\r\n" \
80 -re "$gdb_prompt.*completed\.$" { fail "step &" }
81 timeout { fail "(timeout) step &" }
86 -re "^stepi&\r\n$gdb_prompt.*$hex.*x = 5.*completed\.\r\n" { pass "stepi &" }
87 -re "$gdb_prompt.*completed\.$" { fail "stepi &" }
88 timeout { fail "(timeout) stepi &" }
93 -re "^nexti&\r\n$gdb_prompt.*y = 3.*completed\.\r\n" { pass "nexti &" }
94 -re "$gdb_prompt.*completed\.$" { fail "nexti &" }
95 timeout { fail "(timeout) nexti &" }
100 -re "^finish&\r\nRun till exit from #0 foo \\(\\) at.*async.c.*\r\n$gdb_prompt.*$hex in main \\(\\) at.*async.c.*y = foo \\(\\).*Value returned is.*= 8.*completed\.\r\n" \
102 -re "$gdb_prompt.*completed\.$" { fail "finish &" }
103 timeout { fail "(timeout) finish &" }
106 set jump_here [gdb_get_line_number "jump here"]
108 send_gdb "jump $jump_here&\n"
110 -re "^jump $jump_here&.*Continuing at $hex.*$gdb_prompt.*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*completed\.\r\n" \
112 -re ".*$gdb_prompt.*completed\.$" { fail "jump &" }
113 timeout { fail "(timeout) jump &" }
116 set until_here [gdb_get_line_number "until here"]
118 send_gdb "until $until_here&\n"
120 -re "^until $until_here&.*$gdb_prompt.*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*completed\.\r\n" \
122 -re "$gdb_prompt.*completed\.$" { fail "until &" }
123 timeout { fail "(timeout) until &" }
126 gdb_test_no_output "set exec-done-display off"