warn if "source" fails to open the file when from_tty == 0
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / async.exp
1 # Copyright 1999-2013 Free Software Foundation, Inc.
2
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.
7 #
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.
12 #
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/>.
15
16
17 #
18 # test running programs
19 #
20
21 standard_testfile
22
23 if [get_compiler_info] {
24 return -1
25 }
26
27 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
28 untested $testfile.exp
29 return -1
30 }
31
32 ########################################
33 ##
34 ## Don't do any of these tests until we reach consensus on this file.
35 ##
36 return 0
37 ########################################
38
39 set board [target_info name]
40 set current_target [target_info gdb_protocol]
41 if { $current_target == "remote" } {
42 unset_board_info "gdb_protocol"
43 set_board_info "gdb_protocol" "async"
44 } else {
45 return 0
46 }
47
48 gdb_exit
49 gdb_start
50 gdb_reinitialize_dir $srcdir/$subdir
51 gdb_load ${binfile}
52
53 #
54 # set it up at a breakpoint so we can play with it
55 #
56 if ![runto_main] then {
57 perror "couldn't run to breakpoint"
58 continue
59 }
60
61 gdb_test "break baz" ".*" ""
62
63 #
64 # Make sure we get a 'completed' message when the target is done.
65 #
66 gdb_test "set display-exec-done on" ".*" ""
67
68
69 send_gdb "next&\n"
70 gdb_expect {
71 -re "^next&\r\n$gdb_prompt.*z = 9.*completed\.\r\n" { pass "next &" }
72 -re "$gdb_prompt.*completed\.$" { fail "next &" }
73 timeout { fail "(timeout) next &" }
74 }
75
76 send_gdb "step&\n"
77 gdb_expect {
78 -re "^step&\r\n$gdb_prompt.*y = foo \\(\\).*completed\.\r\n" { pass "step &" }
79 -re "$gdb_prompt.*completed\.$" { fail "step &" }
80 timeout { fail "(timeout) step &" }
81 }
82
83 send_gdb "step&\n"
84 gdb_expect {
85 -re "^step&\r\n$gdb_prompt foo \\(\\) at .*async.c.*x = 5.*completed\.\r\n" \
86 { pass "step &" }
87 -re "$gdb_prompt.*completed\.$" { fail "step &" }
88 timeout { fail "(timeout) step &" }
89 }
90
91 send_gdb "stepi&\n"
92 gdb_expect {
93 -re "^stepi&\r\n$gdb_prompt.*$hex.*x = 5.*completed\.\r\n" { pass "stepi &" }
94 -re "$gdb_prompt.*completed\.$" { fail "stepi &" }
95 timeout { fail "(timeout) stepi &" }
96 }
97
98 send_gdb "nexti&\n"
99 gdb_expect {
100 -re "^nexti&\r\n$gdb_prompt.*y = 3.*completed\.\r\n" { pass "nexti &" }
101 -re "$gdb_prompt.*completed\.$" { fail "nexti &" }
102 timeout { fail "(timeout) nexti &" }
103 }
104
105 send_gdb "finish&\n"
106 gdb_expect {
107 -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" \
108 { pass "finish &" }
109 -re "$gdb_prompt.*completed\.$" { fail "finish &" }
110 timeout { fail "(timeout) finish &" }
111 }
112
113 send_gdb "jump 33&\n"
114 gdb_expect {
115 -re "^jump 33&.*Continuing at $hex.*$gdb_prompt.*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*completed\.\r\n" \
116 { pass "jump &" }
117 -re ".*$gdb_prompt.*completed\.$" { fail "jump &" }
118 timeout { fail "(timeout) jump &" }
119 }
120
121 send_gdb "until 35&\n"
122 gdb_expect {
123 -re "^until 35&.*$gdb_prompt.*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*completed\.\r\n" \
124 { pass "until &" }
125 -re "$gdb_prompt.*completed\.$" { fail "until &" }
126 timeout { fail "(timeout) until &" }
127 }
128
129 gdb_test "set display-exec-done off" ".*" ""
130
131 unset_board_info "gdb_protocol"
132 set_board_info "gdb_protocol" "remote"
133
134
135
136
137
138
This page took 0.039461 seconds and 4 git commands to generate.