]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.dwarf2/fission-reread.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.dwarf2 / fission-reread.exp
CommitLineData
1d506c26 1# Copyright 2012-2024 Free Software Foundation, Inc.
42e7ad6c
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
16load_lib dwarf.exp
17
6b4646ce 18# We run objcopy locally to split out the .dwo file.
52c0551e 19require {!is_remote host}
6b4646ce 20
42e7ad6c 21# This test can only be run on targets which support DWARF-2 and use gas.
ce8d533e 22require dwarf2_support
42e7ad6c 23
f01dcfd9
KB
24# Some targets have leading underscores on assembly symbols.
25set additional_flags [gdb_target_symbol_prefix_flags_asm]
26
42e7ad6c
DE
27standard_testfile .S
28
61dee722
AB
29set obj [standard_output_file "${testfile}.o"]
30set dwo [standard_output_file "${testfile}.dwo"]
c39c8637 31
61dee722 32set options [list nodebug]
c39c8637
TV
33if { $additional_flags != "" } {
34 lappend options $additional_flags
35}
c39c8637 36
61dee722
AB
37set dwo_options $options
38lappend dwo_options split-dwo
250e8e0d 39lappend dwo_options additional_flags=-DDWO=\"$dwo\"
61dee722
AB
40
41if [build_executable_and_dwo_files "$testfile.exp" "${binfile}" $options \
42 [list $srcfile $dwo_options $obj]] {
42e7ad6c
DE
43 return -1
44}
45
2c1db96b
TT
46clean_restart
47gdb_load_no_complaints $binfile
7a218f88 48
e777225b 49gdb_test "break -q main" "Breakpoint.*at.*"
42e7ad6c 50
c2b2ccc5
DE
51gdb_test "ptype baz" "type = class foo {.*"
52
42e7ad6c
DE
53# If we get this far gdb didn't crash, nor did an error occur.
54pass $testfile
8d9878a4
TT
55
56gdb_unload
57# If we get this far gdb didn't crash, nor did an error occur.
58pass "$testfile - unload"
2bd3e4b8
TV
59
60# Test-case for PR24620: Delete the .dwo file and verify that
61# save gdb-index doesn't crash.
62remote_file target delete $dwo
33c6eaae
TT
63save_vars { GDBFLAGS } {
64 append GDBFLAGS " -iex \"maint set dwarf synchronous on\""
65 clean_restart $binfile
66}
2bd3e4b8
TV
67set output_dir [standard_output_file ""]
68set cmd "save gdb-index"
69gdb_test_multiple "$cmd $output_dir" $cmd {
70 -re -wrap "Cannot use an index to create the index.*" {
71 unsupported $gdb_test_name
72 }
73 -re "^$cmd \[^\r\n\]*\r\n$gdb_prompt $" {
74 pass $gdb_test_name
75 }
76}