blob: d4b2b2d8080d0c976b98bc9f0bbda8e6bbca25b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
# Copyright 1999-2014 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# test running programs
#
standard_testfile
if [get_compiler_info] {
return -1
}
if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
untested $testfile.exp
return -1
}
########################################
##
## Don't do any of these tests until we reach consensus on this file.
##
return 0
########################################
gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_test_no_output "set target-async on"
#
# set it up at a breakpoint so we can play with it
#
if ![runto_main] then {
perror "couldn't run to breakpoint"
continue
}
gdb_test "break baz" ".*" ""
#
# Make sure we get a 'completed' message when the target is done.
#
gdb_test_no_output "set exec-done-display on"
send_gdb "next&\n"
gdb_expect {
-re "^next&\r\n$gdb_prompt.*z = 9.*completed\.\r\n" { pass "next &" }
-re "$gdb_prompt.*completed\.$" { fail "next &" }
timeout { fail "(timeout) next &" }
}
send_gdb "step&\n"
gdb_expect {
-re "^step&\r\n$gdb_prompt.*y = foo \\(\\).*completed\.\r\n" { pass "step &" }
-re "$gdb_prompt.*completed\.$" { fail "step &" }
timeout { fail "(timeout) step &" }
}
send_gdb "step&\n"
gdb_expect {
-re "^step&\r\n$gdb_prompt foo \\(\\) at .*async.c.*x = 5.*completed\.\r\n" \
{ pass "step &" }
-re "$gdb_prompt.*completed\.$" { fail "step &" }
timeout { fail "(timeout) step &" }
}
send_gdb "stepi&\n"
gdb_expect {
-re "^stepi&\r\n$gdb_prompt.*$hex.*x = 5.*completed\.\r\n" { pass "stepi &" }
-re "$gdb_prompt.*completed\.$" { fail "stepi &" }
timeout { fail "(timeout) stepi &" }
}
send_gdb "nexti&\n"
gdb_expect {
-re "^nexti&\r\n$gdb_prompt.*y = 3.*completed\.\r\n" { pass "nexti &" }
-re "$gdb_prompt.*completed\.$" { fail "nexti &" }
timeout { fail "(timeout) nexti &" }
}
send_gdb "finish&\n"
gdb_expect {
-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" \
{ pass "finish &" }
-re "$gdb_prompt.*completed\.$" { fail "finish &" }
timeout { fail "(timeout) finish &" }
}
set jump_here [gdb_get_line_number "jump here"]
send_gdb "jump $jump_here&\n"
gdb_expect {
-re "^jump $jump_here&.*Continuing at $hex.*$gdb_prompt.*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*completed\.\r\n" \
{ pass "jump &" }
-re ".*$gdb_prompt.*completed\.$" { fail "jump &" }
timeout { fail "(timeout) jump &" }
}
set until_here [gdb_get_line_number "until here"]
send_gdb "until $until_here&\n"
gdb_expect {
-re "^until $until_here&.*$gdb_prompt.*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*completed\.\r\n" \
{ pass "until &" }
-re "$gdb_prompt.*completed\.$" { fail "until &" }
timeout { fail "(timeout) until &" }
}
gdb_test_no_output "set exec-done-display off"
|