Update copyright year range in header of all files managed by GDB
[binutils-gdb.git] / gdb / testsuite / gdb.base / pie-fork.exp
blob1ccd37607f8e1a9a8ab3803e20ff72967d6dc394
1 # Copyright 2018-2023 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 that we can follow forks properly when the executable is
17 # position-independent.
19 standard_testfile
21 set opts [list debug pie]
23 if [build_executable "failed to prepare" $testfile $srcfile $opts] {
24     return
27 proc setup_test {detach_on_fork {follow_fork_mode "parent"}} {
28     global binfile
30     clean_restart ${binfile}
32     if ![runto_main] {
33         return
34     }
36     gdb_test_no_output "set detach-on-fork ${detach_on_fork}"
37     gdb_test_no_output "set follow-fork-mode ${follow_fork_mode}"
39     gdb_breakpoint "break_here"
42 proc_with_prefix test_detach_on_fork_follow_parent {} {
43     setup_test "on" "parent"
45     gdb_test "continue" "\r\nBreakpoint 2, break_here.*"
48 proc_with_prefix test_detach_on_fork_follow_child {} {
49     setup_test "on" "child"
51     gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*"
54 proc_with_prefix test_no_detach_on_fork {} {
55     setup_test "off"
57     gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
58              "continue from thread 1.1"
59     gdb_test "thread 2.1"
60     gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
61              "continue from thread 2.1"
64 test_detach_on_fork_follow_parent
65 test_detach_on_fork_follow_child
66 test_no_detach_on_fork