Add translations for various sub-directories
[binutils-gdb.git] / gdb / testsuite / gdb.arch / disp-step-insn-reloc.exp
blob70cf81d9d908bcab77e922c44a68047f0e7c9413
1 # Copyright 2015-2024 Free Software Foundation, Inc.
2 # This program is free software; you can redistribute it and/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation; either version 3 of the License, or
5 # (at your option) any later version.
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 # GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License
13 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15 standard_testfile insn-reloc.c
16 set executable $testfile
17 set expfile $testfile.exp
19 require support_displaced_stepping
21 # Some targets have leading underscores on assembly symbols.
22 set additional_flags [gdb_target_symbol_prefix_flags]
24 if [prepare_for_testing "failed to prepare" $executable $srcfile \
25         [list debug $additional_flags]] {
26     return -1
29 if ![runto_main] {
30     return -1
33 # Read function name from testcases[N].
35 proc read_testcase { n } {
36     global gdb_prompt
38     set result -1
39     gdb_test_multiple "print testcases\[${n}\]" "read name of test case ${n}" {
40         -re "\[$\].*= .*<(.*)>.*$gdb_prompt $" {
41             set result $expect_out(1,string)
42         }
43         -re "$gdb_prompt $" { }
44     }
46     return $result
49 set n_testcases [get_integer_valueof "n_testcases" 0]
50 if { ${n_testcases} == 0 } {
51     untested "no instruction relocation to test"
52     return 1
55 # Set a fast tracepoint on each set_point${i} symbol.  There is one for
56 # each testcase.
57 for { set i 0 } { ${i} < ${n_testcases} } { incr i } {
58     set testcase [read_testcase $i]
60     gdb_test "break *set_point$i" "Breakpoint .*" "breakpoint on ${testcase}"
63 gdb_test "break pass" ".*" ""
64 gdb_test "break fail" ".*" ""
66 gdb_test_no_output "set displaced-stepping on"
68 # Make sure we have hit the pass breakpoint for each testcase.
69 for { set i 0 } { ${i} < ${n_testcases} } { incr i } {
70     set testcase [read_testcase $i]
72     with_test_prefix "${testcase}" {
73         gdb_test "continue" ".*Breakpoint \[0-9\]+, .*" \
74             "go to breakpoint $i"
76         gdb_test "continue" ".*Breakpoint \[0-9\]+, pass \(\).*" \
77             "relocated instruction"
78     }