]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.mi/mi-nsintrall.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-nsintrall.exp
1 # Copyright 2008-2024 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 require support_displaced_stepping
17
18 load_lib mi-support.exp
19 set MIFLAGS "-i=mi"
20
21 #
22 # Start here
23 #
24 standard_testfile nsintrall.c
25
26 set options [list debug]
27 if {[gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
28 return -1
29 }
30
31 save_vars { GDBFLAGS } {
32 append GDBFLAGS " -ex \"set non-stop on\""
33 mi_clean_restart $binfile
34 }
35
36 mi_gdb_test "-gdb-set mi-async 1" ".*"
37 mi_detect_async
38
39 if { [mi_runto_main] < 0 } {
40 return
41 }
42
43 mi_create_breakpoint thread_function \
44 "breakpoint at thread_function" \
45 -number 2 -func thread_function
46
47 mi_send_resuming_command "exec-continue --all" "resume all"
48 for {set i 0} {$i < 6} {incr i} {
49 mi_expect_stop "breakpoint-hit" "thread_function" "\[^\n\]*" "$srcfile" \
50 "\[0-9\]*" {"" "disp=\"keep\""} "stop $i"
51 }
52
53 mi_check_thread_states \
54 {"stopped" "stopped" "stopped" "stopped" "stopped" "stopped"} \
55 "thread state, all stopped"
56
57 # now that we know about all the threads, we can get rid of the breakpoints
58 mi_delete_breakpoints
59
60 # Here we create a response string. Note we don't want \r\n at the end,
61 # since mi_gdb_test will append this itself.
62 set running_re ""
63 for {set i 1} {$i < 6} {incr i} {
64 set running_re "$running_re\\*running,thread-id=\"$i\"\r\n"
65 }
66 set running_re "$running_re\\*running,thread-id=\"6\""
67
68 mi_gdb_test "-exec-continue --all" "\[^\n\]*\r\n$running_re" \
69 "resume all, no breakpoint"
70
71 mi_check_thread_states \
72 {"running" "running" "running" "running" "running" "running"} \
73 "thread state, resume all"
74
75 mi_gdb_test "200-exec-interrupt --all" "200\\^done" "interrupt all threads"
76
77 for {set i 0} {$i < 6} {incr i} {
78 mi_expect_interrupt "interrupt $i"
79 }
80 mi_check_thread_states \
81 {"stopped" "stopped" "stopped" "stopped" "stopped" "stopped"} \
82 "thread state, all interrupted"
83
84 # resume all threads, and check that no thread is spuriously left interrupted
85 mi_gdb_test "-exec-continue --all" "\[^\n\]*\r\n$running_re" \
86 "resume all after interrupting"
87
88 sleep 1
89 mi_check_thread_states \
90 {"running" "running" "running" "running" "running" "running"} \
91 "thread state, resume all after interrupting"
92
93 mi_gdb_exit