gdb/riscv: Add command to switch between numeric & abi register names
[binutils-gdb.git] / gdb / testsuite / gdb.base / gcore-tls-pie.exp
bloba9c1fbdec60e71d926507513636225e14cad4333
1 # Copyright 2013-2024 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 # PR 11786 (Gold and strip differ on memsz field of PT_TLS).
17 # Generate a core file from the stripped version of the program,
18 # and then try to debug the core with the unstripped version.
20 standard_testfile
22 if { [have_fuse_ld_gold] == 0} {
23     return -1
26 if {[build_executable "failed to prepare" $testfile $srcfile \
27          {debug pie "ldflags=-fuse-ld=gold"}]} {
28     return -1
31 set stripped_binfile ${binfile}.stripped
32 set gcorefile ${binfile}.gcore
34 set strip_program [transform strip]
35 remote_file host delete ${stripped_binfile}
36 if [run_on_host "strip" "$strip_program" "-g -o ${stripped_binfile} $binfile"] {
37     return -1
40 # Workaround PR binutils/10802:
41 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
42 set perm [file attributes ${binfile} -permissions]
43 file attributes ${stripped_binfile} -permissions $perm
45 clean_restart ${stripped_binfile}
47 # The binary is stripped of debug info, but not minsyms.
48 if ![runto break_here] {
49     return -1
52 if {![gdb_gcore_cmd $gcorefile "save a corefile"]} {
53     return -1
56 # Now restart gdb with the unstripped binary and load the corefile.
58 clean_restart ${binfile}
60 gdb_test "core ${gcorefile}" \
61     "Core was generated by .*" "re-load generated corefile"
63 # Put $pc in gdb.log for debug purposes for comparison with stripped case.
64 gdb_test "x/i \$pc" "break_here.*"
66 gdb_test "frame" "#0 \[^\r\n\]* break_here .*" "unstripped + core ok"