Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-nsthrexec.exp
CommitLineData
88b9d363 1# Copyright 2009-2022 Free Software Foundation, Inc.
a75724bc
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
16# Test that when a thread other than the main thread execs, and the
17# main thread was stopped due to user request, the new incarnation of
18# the main thread doesn't just silently stop at the first internal
19# breakpoint (usually the _dl_debug_state breakpoint).
20
d5b4a7be
YQ
21if { ![support_displaced_stepping] } {
22 unsupported "displaced stepping"
23 return -1
24}
25
a75724bc
PA
26load_lib mi-support.exp
27set MIFLAGS "-i=mi"
28
a75724bc
PA
29#
30# Start here
31#
298a9cf0 32standard_testfile nsthrexec.c
a75724bc 33
298a9cf0 34set options [list debug]
a75724bc
PA
35if {[gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
36 return -1
37}
38
7cb2893d
SM
39save_vars { GDBFLAGS } {
40 append GDBFLAGS " -ex \"set non-stop on\""
41 mi_clean_restart $binfile
42}
a75724bc 43
329ea579 44mi_gdb_test "-gdb-set mi-async 1" ".*"
fcdfa280 45mi_detect_async
a75724bc 46
b75d55d4 47if { [mi_runto_main] < 0 } {
a75724bc
PA
48 continue
49}
50
4b48d439
KS
51mi_create_breakpoint thread_execler \
52 "breakpoint at thread_execler" \
53 -number 2 -function thread_execler
a75724bc
PA
54
55# All threads should stop, except the main thread.
56mi_send_resuming_command "exec-continue --all" "resume all"
57mi_expect_stop "breakpoint-hit" "thread_execler" "\[^\n\]*" "$srcfile" \
58 "\[0-9\]*" {"" "disp=\"keep\""} "stop at thread_execler"
59
60mi_check_thread_states \
61 {"running" "stopped"} \
62 "thread state, execler stopped, main running"
63
64mi_gdb_test "200-exec-interrupt --thread 1" "200\\^done" "interrupt main thread"
65mi_expect_interrupt "main thread interrupted"
66
67mi_check_thread_states {"stopped" "stopped"} "thread state, all stopped"
68
69# now that we know about all the threads, we can get rid of the breakpoints
70mi_delete_breakpoints
71
4b48d439
KS
72mi_create_breakpoint main \
73 "breakpoint at main" \
74 -number 3 -func main
75
a75724bc
PA
76
77# Now resume the execler thread. Eventually, it execs.
78mi_send_resuming_command "exec-continue --thread 2" "resume execler thread"
79
80# Check that the main thread passes by the _dl_debug_state internal
81# breakpoint without silently stopping.
82mi_expect_stop "breakpoint-hit" "main" "\[^\n\]*" "$srcfile" \
83 "\[0-9\]*" {"" "disp=\"keep\""} "stop at main after exec"
84
85mi_gdb_exit
This page took 2.270292 seconds and 4 git commands to generate.