summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/pie-fork.exp
blob: 1ccd37607f8e1a9a8ab3803e20ff72967d6dc394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 2018-2023 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Test that we can follow forks properly when the executable is
# position-independent.

standard_testfile

set opts [list debug pie]

if [build_executable "failed to prepare" $testfile $srcfile $opts] {
    return
}

proc setup_test {detach_on_fork {follow_fork_mode "parent"}} {
    global binfile

    clean_restart ${binfile}

    if ![runto_main] {
	return
    }

    gdb_test_no_output "set detach-on-fork ${detach_on_fork}"
    gdb_test_no_output "set follow-fork-mode ${follow_fork_mode}"

    gdb_breakpoint "break_here"
}

proc_with_prefix test_detach_on_fork_follow_parent {} {
    setup_test "on" "parent"

    gdb_test "continue" "\r\nBreakpoint 2, break_here.*"
}

proc_with_prefix test_detach_on_fork_follow_child {} {
    setup_test "on" "child"

    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*"
}

proc_with_prefix test_no_detach_on_fork {} {
    setup_test "off"

    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
	     "continue from thread 1.1"
    gdb_test "thread 2.1"
    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
	     "continue from thread 2.1"
}

test_detach_on_fork_follow_parent
test_detach_on_fork_follow_child
test_no_detach_on_fork