]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-nonstop.exp
Updated copyright notices for most files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-nonstop.exp
CommitLineData
0fb0cc75
JB
1# Copyright 2002, 2003, 2004, 2005, 2007, 2008, 2009
2# Free Software Foundation, Inc.
8cf6e61a
VP
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17# This only works with native configurations
18if {![isnative]} {
19 return
20}
21
22load_lib mi-support.exp
23set MIFLAGS "-i=mi"
24
25gdb_exit
26if {[mi_gdb_start]} {
27 continue
28}
29
8cf6e61a
VP
30#
31# Start here
32#
33set testfile "non-stop"
34set srcfile "$testfile.c"
35set binfile "$objdir/$subdir/mi-$testfile"
36
37set options [list debug incdir=$objdir]
38if {[gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
39 return -1
40}
41
42mi_gdb_reinitialize_dir $srcdir/$subdir
43mi_gdb_load $binfile
44
45set supported 0
46send_gdb "-gdb-show non-stop\n"
47gdb_expect {
48 -re ".*\\^done,value=\"off\",supported=\"(\[^\"\]+)\"\r\n$mi_gdb_prompt$" {
49 if { $expect_out(1,string) == "1" } {
50 set supported 1
51 }
52 }
53 -re ".$mi_gdb_prompt$" {
54 }
55}
56
8cf6e61a
VP
57mi_gdb_test "-gdb-set non-stop 1" ".*"
58mi_gdb_test "-gdb-set target-async 1" ".*"
59detect_async
60
80f73d71 61mi_gdb_test "200-break-insert -t main" ".*"
1ad15515
PA
62
63set created "=thread-created,id=\"$decimal\"\r\n"
64set running "\\*running,thread-id=\"$decimal\"\r\n"
65
66set notifs "($created)*($running)*"
67
80f73d71
VP
68# Note: presently, we skip this test on non-native targets,
69# so 'run' is OK. As soon as we start to run this on remote
70# target, the logic from mi_run_cmd will have to be refactored.
71send_gdb "-exec-run\n"
72gdb_expect {
1ad15515 73 -re "\\^running\r\n$notifs$mi_gdb_prompt" {
80f73d71
VP
74 }
75 -re "\\^error,msg=\"The target does not support running in non-stop mode.\"" {
76 verbose -log "Non-stop mode not supported, skipping all tests"
77 return
78 }
1ad15515 79 -re "\r\n$mi_gdb_prompt" {
80f73d71
VP
80 perror "Cannot start target (unknown output after running)"
81 return -1
82 }
83 timeout {
84 perror "Cannot start target (timeout)"
85 return -1
86 }
87}
88mi_expect_stop "breakpoint-hit" main ".*" ".*" "\[0-9\]+" { "" "disp=\"del\"" } "run to main"
8cf6e61a
VP
89
90mi_create_breakpoint break_at_me 2 keep break_at_me .* .* .* "breakpoint at marker"
91
92mi_send_resuming_command "exec-continue" "resume 1"
93mi_expect_stop "breakpoint-hit" "break_at_me" ".*" "non-stop.c" ".*" {"" "disp=\"keep\""} "w0,i0 stop"
94mi_expect_stop "breakpoint-hit" "break_at_me" ".*" "non-stop.c" ".*" {"" "disp=\"keep\""} "w1,i0 stop"
95
1ad15515 96mi_check_thread_states {"running" "stopped" "stopped"} "thread state, stop 1"
8cf6e61a
VP
97
98mi_gdb_test "-thread-select 2" "\\^done.*" "select thread 2"
99mi_create_varobj I_W0 "i" "create varobj in first thread"
100mi_gdb_test "-thread-select 3" "\\^done.*" "select thread 3"
101mi_create_varobj I_W1 "i" "create varobj in second thread"
102
103mi_send_resuming_command "exec-continue --thread 2" "resume 1"
1ad15515 104mi_check_thread_states {"running" "running" "stopped"} "thread state, resume 1"
8cf6e61a 105mi_expect_stop "breakpoint-hit" "break_at_me" ".*" "non-stop.c" ".*" {"" "disp=\"keep\""} "w0,i1 stop"
1ad15515 106mi_check_thread_states {"running" "stopped" "stopped"} "thread state, stop 2"
8cf6e61a
VP
107
108mi_send_resuming_command "exec-continue --thread 3" "resume 2"
1ad15515 109mi_check_thread_states {"running" "stopped" "running"} "thread state, resume 2"
8cf6e61a 110mi_expect_stop "breakpoint-hit" "break_at_me" ".*" "non-stop.c" ".*" {"" "disp=\"keep\""} "w1,i1 stop"
1ad15515 111mi_check_thread_states {"running" "stopped" "stopped"} "thread state, stop 3"
8cf6e61a
VP
112
113mi_varobj_update * {I_W1 I_W0} "update varobj, 1"
114mi_check_varobj_value I_W0 1 "check varobj, w0, 1"
115mi_check_varobj_value I_W1 1 "check varobj, w1, 1"
116
117send_gdb "-exec-interrupt --thread 1\n"
118gdb_expect {
119 -re "\\^done\r\n$mi_gdb_prompt\\*stopped\[^\r\n\]+\r\n$" {
120 pass "interrupted"
121 }
122 timeout {
123 fail "interrupted (timeout)"
124 }
125}
126# The interrupt command sends SIGINT to the target, and therefore the
127# thread might not be stopped immediately when we return from the target.
128# So, wait a bit
129sleep 1
1ad15515 130mi_check_thread_states {"stopped" "stopped" "stopped"} "thread state, stop 4"
8cf6e61a 131
8cf6e61a
VP
132send_gdb "-exec-continue --all\n"
133gdb_expect {
80f73d71 134 -re ".*\\*running,thread-id=\"3\"\r\n\\*running,thread-id=\"2\"\r\n\\*running,thread-id=\"1\"\r\n$mi_gdb_prompt" {
8cf6e61a
VP
135 pass "resume all"
136 }
137 timeout {
138 fail "resume all (timeout)"
139 }
140}
141
d0b76dc6 142mi_expect_stop "breakpoint-hit" "break_at_me" "\[^\n\]*" "non-stop.c" "\[0-9\]*" {"" "disp=\"keep\""} "w0,i2 stop"
8cf6e61a
VP
143mi_expect_stop "breakpoint-hit" "break_at_me" ".*" "non-stop.c" ".*" {"" "disp=\"keep\""} "w1,i2 stop"
144
145# At this point, thread 1 (main) is running, and worker threads are stopped.
146# Check that we can modify breakpoint condition, even when operating on a
147# running thread.
148mi_gdb_test "-break-condition --thread 1 2 id==1" "\\^done" "set condition, 1"
149
150mi_send_resuming_command "exec-continue --thread 2" "resume 2"
151mi_send_resuming_command "exec-continue --thread 3" "resume 3"
152
153sleep 2
154mi_expect_stop "breakpoint-hit" "break_at_me" ".*" "non-stop.c" ".*" {"" "disp=\"keep\""} "w0,i3 stop"
1ad15515 155mi_check_thread_states {"running" "running" "stopped"} "thread state, stop on cond breakpoint"
8cf6e61a
VP
156
157# Check that when we update all varobj, we don't get no error about varobj
158# bound to running thread.
159mi_varobj_update * {I_W1} "update varobj, 2"
160mi_check_varobj_value I_W1 3 "check varobj, w1, 1"
161
162
163# Check that stack commands are allowed on a stopped thread, even if some other threads
164# are running, and produce something sane. Also check we check error on running thread.
165mi_gdb_test "-stack-list-frames --thread 2" "\\^error,msg=\".*\"" "stacktrace of running thread"
166mi_gdb_test "-stack-list-frames --thread 3" \
167 "\\^done,stack=\\\[frame={level=\"0\",addr=\".*\",func=\"break_at_me\".*" \
168 "stacktrace of stopped thread"
169
170# verify that after thread exit, the thread is reported as exited in -thread-info, and
171# we can still interact with other threads.
172mi_gdb_test "-thread-select 2" "\\^done.*" "select first worker thread"
173# Since thread 2 is running, we need to set variable via another thread.
174mi_gdb_test "-gdb-set --thread 3 variable exit_first_thread=1" ".*\\^done" "ask the second thread to exit"
175gdb_expect {
3d043ef6 176 -re ".*=thread-exited,id=\"2\",group-id=\"\[0-9\]+\"\r\n$" {
8cf6e61a
VP
177 pass "wait for thread exit"
178 }
179 timeout {
180 fail "wait for thread exit (timeout)"
181 }
182}
183
184# See that we can still poke other threads.
185mi_gdb_test "-stack-list-frames --thread 3" \
186 "\\^done,stack=\\\[frame={level=\"0\",addr=\".*\",func=\"break_at_me\".*" \
187 "stacktrace of stopped thread"
188
189
190mi_gdb_exit
191