gdb/riscv: Add command to switch between numeric & abi register names
[binutils-gdb.git] / gdb / testsuite / gdb.base / sect-cmd.exp
blob49a94cd9019016f5bfb719d1db64a3bf143a9ab0
1 # Copyright 1997-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 # Test the 'section NAME ADDRESS' command.
18 if { [prepare_for_testing "failed to prepare" "sect-cmd" \
19           {break.c break1.c} {debug nowarnings}] } {
20     return -1
22 set srcfile break.c
23 set srcfile1 break1.c
25 if {![runto_main]} {
26     return
29 # Get the address of an executable section.  This test was originally
30 # written for (and only run on) hppa targets.  For PA32 programs using
31 # the SOM file format the code section is (apparently) called $CODE$,
32 # hence why the patterns here include that as a choice.
34 set address1 ""
35 set address2 ""
36 set section_name ""
38 set ok 0
39 gdb_test_multiple "info files" "" -lbl {
40     -re "\\s+($hex) - ($hex) is (\\\$CODE\\\$|\\.text\\S*) in \[^\r\n\]*(?=\r\n)" {
41         if { ! $ok } {
42             set address1 $expect_out(1,string)
43             set address2 $expect_out(2,string)
44             set section_name $expect_out(3,string)
45             set ok 1
46         }
47         exp_continue
48     }
49     -re -wrap "" {
50         gdb_assert { $ok } $gdb_test_name
51     }
54 # If we don't have the details we need then we can't continue.
56 if { $address1 == "" || $address2 == "" || $section_name == "" } {
57     unresolved "failed to find required section details"
58     return
61 # Reset the section to that same starting address, which should be
62 # harmless (i.e., we just want to exercise the section command).
64 set saw_section_address_line false
65 gdb_test_multiple "section $section_name $address1" \
66     "set section $section_name to original address" -lbl {
67         -re "\[^\r\n\]*$address1 \- $address2 is $section_name in \[^\r\n\]*(?=\r\n)" {
68             set saw_section_address_line true
69             exp_continue
70         }
71         -re "Section \[^\r\n\]+ not found(?=\r\n)" {
72             fail "$gdb_test_name (saw not found marker)"
73             exp_continue
74         }
75         -re -wrap "" {
76             gdb_assert { $saw_section_address_line } $gdb_test_name
77         }
78     }
80 # Verify that GDB responds gracefully to a non-existent section name.
82 gdb_test "section FOOBARBAZ 0x1234" "Section FOOBARBAZ not found"
84 # Check that GDB can still print the error message when the section
85 # name is very long.  It used to be the case that GDB could only print
86 # (up to) 100 character section names in this error message, but that
87 # is no longer the case.
89 set long_sect_name \
90     "A234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123"
91 gdb_test "section $long_sect_name 0x1234" \
92     "Section $long_sect_name not found" \
93     "non-existent too-long section disallowed"