Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.threads / vfork-follow-child-exit.exp
blobaff4ad241fa9bbc0c222dc00036b253c1dee0dd0
1 # Copyright (C) 2019-2022 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 # Test following a vfork child that exits, when the vfork parent is a
17 # threaded program, and it's a non-main thread that vforks.
19 standard_testfile
21 if {[build_executable "failed to prepare" $testfile $srcfile {debug pthreads}]} {
22     return -1
25 # DETACH indicates whether "set detach-on-fork" is enabled.  It is
26 # either "on" or "off".
28 proc test_vfork {detach} {
29     global binfile
31     clean_restart $binfile
33     if ![runto_main] then {
34         return 0
35     }
37     gdb_test_no_output "set follow-fork-mode child"
38     gdb_test_no_output "set detach-on-fork $detach"
40     if {$detach == "off"} {
41         gdb_test "continue" \
42             [multi_line \
43                  "Attaching after .* vfork to child .*" \
44                  ".*New inferior 2 .*" \
45                  ".*Inferior 2 .*exited normally.*"]
46     } else {
47         gdb_test "continue" \
48             [multi_line \
49                  "Attaching after .* vfork to child .*" \
50                  ".*New inferior 2 .*" \
51                  ".*Detaching vfork parent process .* after child exit.*" \
52                  ".*Inferior 1 .* detached.*" \
53                  ".*Inferior 2 .*exited normally.*"]
54     }
57 foreach_with_prefix detach-on-fork {"off" "on"} {
58     test_vfork ${detach-on-fork}