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