aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/async.exp
blob: 0f99b0119315c809dddcdd61b28400960fed1481 (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
#   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 {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
    untested $testfile.exp
    return -1
}

#
# 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"

# Test a background execution command.  COMMAND is the command to
# send.  BEFORE_PROMPT is the pattern expected before the GDB prompt
# is output.  AFTER_PROMPT is the pattern expected after the prompt
# and before "completed".  MESSAGE is optional, and is the pass/fail
# message to br printed.  If omitted, then the command string is used
# as message.
proc test_background {command before_prompt after_prompt {message ""}} {
    global gdb_prompt

    if {$message eq ""} {
        set message $command
    }

    send_gdb "$command\n"
    gdb_expect {
	-re "^$command\r\n${before_prompt}${gdb_prompt}${after_prompt}completed\.\r\n" {
	    pass "$message"
	}
	-re "$gdb_prompt.*completed\.\r\n" {
	    fail "$message"
	}
	timeout  {
	    fail "$message (timeout)"
	}
    }
}

test_background "next&" "" ".*z = 9.*"

test_background "step&" "" ".*y = foo \\(\\).*" "step& #1"

test_background "step&" "" " foo \\(\\) at .*async.c.*x = 5.*" "step& #2"

test_background "stepi&" "" ".*$hex.*x = 5.*"

test_background "nexti&" "" ".*y = 3.*"

test_background "finish&" \
    "Run till exit from #0  foo \\(\\) at.*async.c.*\r\n" \
    ".*$hex in main \\(\\) at.*async.c.*y = foo \\(\\).*Value returned is.*= 8.*"

set jump_here [gdb_get_line_number "jump here"]
test_background "jump $jump_here&" \
    ".*Continuing at $hex.*" \
    ".*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*" \
    "jump&"

set until_here [gdb_get_line_number "until here"]
test_background "until $until_here&" \
    ".*" \
    ".*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*" \
    "until&"

gdb_test_no_output "set exec-done-display off"