1# Copyright (C) 2015-2023 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# This test verifies that several threads forking while another thread 17# is constantly stepping over a breakpoint is properly handled. 18 19standard_testfile 20 21set linenum [gdb_get_line_number "set break here"] 22 23if {[build_executable "failed to prepare" $testfile $srcfile {debug pthreads}] == -1} { 24 return -1 25} 26 27# Assume yes. 28set displaced_stepping_supported 1 29 30# "set displaced on" only tells gdb to use displaced stepping if 31# possible. Probe for actual support. 32 33proc probe_displaced_stepping_support {} { 34 global displaced_stepping_supported 35 global binfile gdb_prompt 36 37 with_test_prefix "probe displaced-stepping support" { 38 clean_restart $binfile 39 40 gdb_test_no_output "set displaced on" 41 if {![runto_main]} { 42 return 0 43 } 44 45 # We're stopped at the main breakpoint. If displaced stepping is 46 # supported, we'll see related debug output while we step past 47 # that breakpoint. 48 gdb_test_no_output "set debug displaced 1" 49 gdb_test_multiple "next" "probe" { 50 -re "prepared successfully .*$gdb_prompt $" { 51 pass "supported" 52 } 53 -re ".*$gdb_prompt $" { 54 set displaced_stepping_supported 0 55 pass "not supported" 56 } 57 } 58 } 59} 60 61# The test proper. If COND_BP_TARGET is true, then test with 62# conditional breakpoints evaluated on the target side, if possible. 63# DETACH_ON_FORK is used as value for the "set detach-on-fork" 64# setting. If "on", this exercises GDB explicitly continuing the fork 65# child until exit. If "off", this exercises GDB detaching the fork 66# child. DISPLACED indicates whether to use displaced stepping or 67# not. 68proc do_test { cond_bp_target detach_on_fork displaced } { 69 global GDBFLAGS 70 global srcfile testfile binfile 71 global decimal gdb_prompt 72 global linenum 73 global is_remote_target 74 75 set saved_gdbflags $GDBFLAGS 76 set GDBFLAGS [concat $GDBFLAGS " -ex \"set non-stop on\""] 77 clean_restart $binfile 78 set GDBFLAGS $saved_gdbflags 79 80 if {![runto_main]} { 81 return 0 82 } 83 84 if {$cond_bp_target} { 85 set test "set breakpoint condition-evaluation target" 86 gdb_test_multiple $test $test { 87 -re "warning: Target does not support breakpoint condition evaluation.\r\nUsing host evaluation mode instead.\r\n$gdb_prompt $" { 88 # Target doesn't support breakpoint condition 89 # evaluation on its side. Skip the test. 90 return 0 91 } 92 -re "^$test\r\n$gdb_prompt $" { 93 } 94 } 95 } else { 96 gdb_test_no_output "set breakpoint condition-evaluation host" 97 } 98 99 gdb_test_no_output "set detach-on-fork $detach_on_fork" 100 gdb_test_no_output "set displaced $displaced" 101 102 gdb_test "break $linenum if zero == 1" \ 103 "Breakpoint .*" \ 104 "set breakpoint that evals false" 105 106 set test "continue &" 107 gdb_test_multiple $test $test { 108 -re "$gdb_prompt " { 109 pass $test 110 } 111 } 112 113 set fork_count 0 114 set ok 0 115 116 with_timeout_factor 10 { 117 set test "inferior 1 exited" 118 gdb_test_multiple "" $test { 119 -re "Inferior 1 \(\[^\r\n\]+\) exited normally" { 120 set ok 1 121 pass $test 122 } 123 -re "Inferior $decimal \(\[^\r\n\]+\) exited normally" { 124 incr fork_count 125 if {$fork_count <= 100} { 126 exp_continue 127 } else { 128 fail "$test (too many forks)" 129 } 130 } 131 } 132 } 133 134 if {!$ok} { 135 # No use testing further. 136 return 137 } 138 139 gdb_test "info threads" "No threads\." \ 140 "no threads left" 141 142 gdb_test "info inferiors" \ 143 "Num\[ \t\]+Description\[ \t\]+Connection\[ \t\]+Executable\[ \t\]+\r\n\\* 1 \[^\r\n\]+" \ 144 "only inferior 1 left" 145} 146 147probe_displaced_stepping_support 148 149foreach_with_prefix cond_bp_target {1 0} { 150 foreach_with_prefix detach_on_fork {"on" "off"} { 151 # Disable "off" for now. The test does pass with 152 # detach-on-fork off (at the time of writing), but gdb seems 153 # to slow down quadratically as inferiors are created, and 154 # then the test takes annoyingly long to complete... 155 if {$detach_on_fork == "off"} { 156 continue 157 } 158 159 foreach_with_prefix displaced {"on" "off"} { 160 if {$displaced == "on" && !$displaced_stepping_supported} { 161 continue 162 } 163 164 do_test $cond_bp_target $detach_on_fork $displaced 165 } 166 } 167} 168