]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/gcore-relro-pie.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / gcore-relro-pie.exp
CommitLineData
1d506c26 1# Copyright 2013-2024 Free Software Foundation, Inc.
204b5331
DE
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# PR 11786 (Gold and strip differ on flags,align fields of PT_GNU_RELRO).
17# Generate a core file from the stripped version of the program,
18# and then try to debug the core with the unstripped version.
19
20standard_testfile
21
98bf5c02 22if {[build_executable "failed to prepare" $testfile $srcfile \
66484aca 23 {debug pie "ldflags=-Wl,-z,relro"}]} {
204b5331
DE
24 return -1
25}
26
27set stripped_binfile ${binfile}.stripped
28set gcorefile ${binfile}.gcore
29
30set strip_program [transform strip]
31remote_file host delete ${stripped_binfile}
32if [run_on_host "strip" "$strip_program" "-g -o ${stripped_binfile} $binfile"] {
33 return -1
34}
35
36# Workaround PR binutils/10802:
37# Preserve the 'x' bit also for PIEs (Position Independent Executables).
38set perm [file attributes ${binfile} -permissions]
39file attributes ${stripped_binfile} -permissions $perm
40
41clean_restart ${stripped_binfile}
42
204b5331
DE
43# The binary is stripped of debug info, but not minsyms.
44if ![runto break_here] {
204b5331
DE
45 return -1
46}
47
48if {![gdb_gcore_cmd $gcorefile "save a corefile"]} {
49 return -1
50}
51
52# Now restart gdb with the unstripped binary and load the corefile.
53
54clean_restart ${binfile}
55
56gdb_test "core ${gcorefile}" \
57 "Core was generated by .*" "re-load generated corefile"
58
59# Put $pc in gdb.log for debug purposes for comparison with stripped case.
60gdb_test "x/i \$pc" "break_here.*"
61
62gdb_test "frame" "#0 \[^\r\n\]* break_here .*" "unstripped + core ok"