* gdb.mi/mi-nonstop.exp: Don't check isnative. Use
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-nsintrall.exp
CommitLineData
0fb0cc75 1# Copyright 2008, 2009 Free Software Foundation, Inc.
1ad15515
PA
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
1ad15515
PA
16load_lib mi-support.exp
17set MIFLAGS "-i=mi"
18
19gdb_exit
20if {[mi_gdb_start]} {
21 continue
22}
23
24#
25# Start here
26#
27set testfile "nsintrall"
28set srcfile "$testfile.c"
29set binfile "$objdir/$subdir/mi-$testfile"
30
31set options [list debug incdir=$objdir]
32if {[gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
33 return -1
34}
35
36mi_gdb_reinitialize_dir $srcdir/$subdir
37mi_gdb_load $binfile
38
39set supported 0
40send_gdb "-gdb-show non-stop\n"
41gdb_expect {
42 -re ".*\\^done,value=\"off\",supported=\"(\[^\"\]+)\"\r\n$mi_gdb_prompt$" {
43 if { $expect_out(1,string) == "1" } {
44 set supported 1
45 }
46 }
47 -re ".$mi_gdb_prompt$" {
48 }
49}
50
51mi_gdb_test "-gdb-set non-stop 1" ".*"
52mi_gdb_test "-gdb-set target-async 1" ".*"
53detect_async
54
56a8e183
PA
55if { [mi_run_to_main] < 0 } {
56 perror "mi-nsintrall.exp tests suppressed"
57 continue
1ad15515 58}
1ad15515
PA
59
60mi_create_breakpoint thread_function 2 keep thread_function .* .* .* \
61 "breakpoint at thread_function"
62
63mi_send_resuming_command "exec-continue --all" "resume all"
64for {set i 0} {$i < 6} {incr i} {
65 mi_expect_stop "breakpoint-hit" "thread_function" "\[^\n\]*" "$srcfile" \
66 "\[0-9\]*" {"" "disp=\"keep\""} "stop $i"
67}
68
69mi_check_thread_states \
70 {"stopped" "stopped" "stopped" "stopped" "stopped" "stopped"} \
71 "thread state, all stopped"
72
73# now that we know about all the threads, we can get rid of the breakpoints
74mi_delete_breakpoints
75
76set running_re ""
77for {set i 6} {$i > 0} {incr i -1} {
78 set running_re "$running_re\\*running,thread-id=\"$i\"\r\n"
79}
80
81send_gdb "-exec-continue --all\n"
82gdb_expect {
83 -re ".*$running_re$mi_gdb_prompt" {
84 pass "resume all, no breakpoint"
85 }
86 timeout {
87 fail "resume all, no breakpoint (timeout)"
88 }
89}
90mi_check_thread_states \
91 {"running" "running" "running" "running" "running" "running"} \
92 "thread state, resume all"
93
94mi_gdb_test "200-exec-interrupt --all" "200\\^done" "interrupt all threads"
95
96for {set i 0} {$i < 6} {incr i} {
97 mi_expect_interrupt "interrupt $i"
98}
99mi_check_thread_states \
100 {"stopped" "stopped" "stopped" "stopped" "stopped" "stopped"} \
101 "thread state, all interrupted"
102
103# resume all threads, and check that no thread is spuriously left interrupted
104send_gdb "-exec-continue --all\n"
105gdb_expect {
106 -re ".*$running_re$mi_gdb_prompt" {
107 pass "resume all after interrupting"
108 }
109 timeout {
110 fail "resume all after interrupting (timeout)"
111 }
112}
113
114sleep 1
115mi_check_thread_states \
116 {"running" "running" "running" "running" "running" "running"} \
117 "thread state, resume all after interrupting"
118
119mi_gdb_exit
This page took 0.074017 seconds and 4 git commands to generate.