]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/async.exp
gdb.base/async.exp: Fix stepi& test.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / async.exp
CommitLineData
ecd75fc8 1# Copyright 1999-2014 Free Software Foundation, Inc.
104c1213
JM
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
104c1213 6# (at your option) any later version.
e22f8b7c 7#
104c1213
JM
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.
e22f8b7c 12#
104c1213 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
104c1213 15
104c1213 16
104c1213
JM
17#
18# test running programs
19#
104c1213 20
a64d2530 21standard_testfile
104c1213 22
a64d2530 23if [get_compiler_info] {
b60f0898 24 return -1
104c1213
JM
25}
26
a64d2530
TT
27if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
28 untested $testfile.exp
104c1213
JM
29 return -1
30}
31
32########################################
33##
34## Don't do any of these tests until we reach consensus on this file.
35##
36return 0
37########################################
38
104c1213
JM
39gdb_exit
40gdb_start
41gdb_reinitialize_dir $srcdir/$subdir
42gdb_load ${binfile}
104c1213 43
0172b6a7
DE
44gdb_test_no_output "set target-async on"
45
104c1213
JM
46#
47# set it up at a breakpoint so we can play with it
48#
49if ![runto_main] then {
50 perror "couldn't run to breakpoint"
51 continue
52}
53
de7ff789 54gdb_test "break baz" ".*" ""
104c1213
JM
55
56#
57# Make sure we get a 'completed' message when the target is done.
58#
0172b6a7 59gdb_test_no_output "set exec-done-display on"
104c1213
JM
60
61
62send_gdb "next&\n"
63gdb_expect {
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 &" }
67}
68
69send_gdb "step&\n"
70gdb_expect {
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 &" }
74}
75
76send_gdb "step&\n"
77gdb_expect {
78 -re "^step&\r\n$gdb_prompt foo \\(\\) at .*async.c.*x = 5.*completed\.\r\n" \
79 { pass "step &" }
80 -re "$gdb_prompt.*completed\.$" { fail "step &" }
81 timeout { fail "(timeout) step &" }
82}
83
84send_gdb "stepi&\n"
85gdb_expect {
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 &" }
89}
90
91send_gdb "nexti&\n"
92gdb_expect {
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 &" }
96}
97
98send_gdb "finish&\n"
99gdb_expect {
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" \
101 { pass "finish &" }
102 -re "$gdb_prompt.*completed\.$" { fail "finish &" }
103 timeout { fail "(timeout) finish &" }
104}
105
e2f6c966
PA
106set jump_here [gdb_get_line_number "jump here"]
107
108send_gdb "jump $jump_here&\n"
104c1213 109gdb_expect {
e2f6c966 110 -re "^jump $jump_here&.*Continuing at $hex.*$gdb_prompt.*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*completed\.\r\n" \
104c1213
JM
111 { pass "jump &" }
112 -re ".*$gdb_prompt.*completed\.$" { fail "jump &" }
113 timeout { fail "(timeout) jump &" }
114}
115
e2f6c966
PA
116set until_here [gdb_get_line_number "until here"]
117
118send_gdb "until $until_here&\n"
104c1213 119gdb_expect {
e2f6c966 120 -re "^until $until_here&.*$gdb_prompt.*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*completed\.\r\n" \
104c1213
JM
121 { pass "until &" }
122 -re "$gdb_prompt.*completed\.$" { fail "until &" }
123 timeout { fail "(timeout) until &" }
124}
125
0172b6a7 126gdb_test_no_output "set exec-done-display off"