[gdb/symtab] Fix gdb.base/fission-macro.exp with unix/-m32
[binutils-gdb.git] / gdb / testsuite / gdb.threads / fork-thread-pending.exp
blobd31a347ec855cada5ad9a3e91c0b668864fc2eda
1 # Copyright (C) 2009-2024 Free Software Foundation, Inc.
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.
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.
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/>.
16 # Only GNU/Linux is known to support `set follow-fork-mode child'.
18 if { ! [istarget "*-*-linux*"] } {
19     return 0
22 standard_testfile
24 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
25     return -1
28 clean_restart ${binfile}
30 if {![runto_main]} {
31    return 0
34 gdb_test_no_output "set follow-fork-mode child" "1, set follow-fork-mode child"
35 gdb_test "catch fork" "Catchpoint \[0-9\]* \\(fork\\)" "1, insert fork catchpoint"
36 gdb_breakpoint "start" "" "1, set breakpoint at start"
38 gdb_test "continue" "Catchpoint.*" "1, get to the fork event"
40 gdb_test "info threads" " ${tdlabel_re} .* ${tdlabel_re} .* ${tdlabel_re} .* ${tdlabel_re} .*" "1, multiple threads found"
42 gdb_test "thread 1" ".*" "1, switched away from event thread"
44 gdb_test "continue" "Not resuming.*" "1, refused to resume"
46 set test "1, followed to the child, found one thread"
47 gdb_test_multiple "info threads" "metest" {
48     -re " ${tdlabel_re} .* ${tdlabel_re} .*$gdb_prompt $" {
49         fail "$test"
50     }
51     -re " ${tdlabel_re} .*$gdb_prompt $" {
52         pass "$test"
53     }
54     -re "$gdb_prompt $" {
55         fail "$test (unknown output)"
56     }
57     timeout {
58         fail "$test (timeout)"
59     }
62 gdb_test "continue" "Breakpoint 3, start.*" "1, get to the spawned thread in fork child"
64 set test "1, followed to the child, found two threads"
65 gdb_test_multiple "info threads" "$test" {
66     -re " ${tdlabel_re} .* ${tdlabel_re} .* ${tdlabel_re} .*$gdb_prompt $" {
67         fail "$test"
68     }
69     -re " ${tdlabel_re} .* ${tdlabel_re} .*$gdb_prompt $" {
70         pass "$test"
71     }
72     -re "$gdb_prompt $" {
73         fail "$test (unknown output)"
74     }
75     timeout {
76         fail "$test (timeout)"
77     }
80 # Start over, but this time, don't switch away from the fork event thread.
82 clean_restart $binfile
83 if {![runto_main]} {
84    return 0
87 gdb_test_no_output "set follow-fork-mode child" "2, set follow-fork-mode child"
88 gdb_test "catch fork" "Catchpoint \[0-9\]* \\(fork\\)" "2, insert fork catchpoint"
89 gdb_breakpoint "start"
91 gdb_test "continue" "Catchpoint.*" "2, get to the fork event"
93 gdb_test "info threads" " ${tdlabel_re} .* ${tdlabel_re} .* ${tdlabel_re} .* ${tdlabel_re} .*" "2, multiple threads found"
95 gdb_test "continue" "Breakpoint 3, start.*" "2, get to the spawned thread in fork child"
97 set test "2, followed to the child, found two threads"
98 gdb_test_multiple "info threads" "$test" {
99     -re " ${tdlabel_re} .* ${tdlabel_re} .* ${tdlabel_re} .*$gdb_prompt $" {
100         fail "$test"
101     }
102     -re " ${tdlabel_re} .* ${tdlabel_re} .*$gdb_prompt $" {
103         pass "$test"
104     }
105     -re "$gdb_prompt $" {
106         fail "$test (unknown output)"
107     }
108     timeout {
109         fail "$test (timeout)"
110     }