Add translations for various sub-directories
[binutils-gdb.git] / gdb / testsuite / gdb.ada / operator_bp.exp
blob2335d492798bb48658817e8dc49c364373fc543f
1 # Copyright 2012-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 load_lib "ada.exp"
18 require allow_ada_tests
20 standard_ada_testfile ops_test
22 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
23     return -1
26 clean_restart ${testfile}
28 # This test won't work properly if system debuginfo is installed.
29 gdb_test_no_output "set debug-file-directory"
31 set bp_location [gdb_get_line_number "BEGIN" ${testdir}/ops_test.adb]
32 runto "ops_test.adb:$bp_location"
34 # Set breakpoints for all operators, using just the operator name in quotes.
36 set bp_re "Breakpoint $decimal at $hex"
37 foreach op { "+" "-" } {
38     set op_re [string_to_regexp $op]
39     gdb_test "break \"$op\"" "$bp_re: \"$op_re\"\\. \\($decimal locations\\).*"
42 foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
43     set op_re [string_to_regexp $op]
44     gdb_test_multiple "break \"$op\"" "" {
45         -re -wrap "$bp_re: file .*ops.adb, line $decimal." {
46             pass $gdb_test_name
47         }
48         -re -wrap "$bp_re: \"$op_re\"\\. \\($decimal locations\\).*" {
49             pass $gdb_test_name
50         }
51     }
54 # Make sure we stop correctly in each operator function.
56 foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
57     set op_re [string_to_regexp $op]
58     gdb_test "continue" \
59              "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
60              "continue to \"$op\""
63 # Perform the same test, but using the qualified name of the operator,
64 # instead of the just the operator name (as in 'break ops."+"').
66 clean_restart ${testfile}
68 runto "ops_test.adb:$bp_location"
70 # Set breakpoints for all operators, using just the operator name in quotes.
72 foreach op { "+" "-" } {
73     set op_re [string_to_regexp $op]
74     gdb_test "break ops.\"$op\"" \
75              "Breakpoint $decimal at $hex: ops\\.\"$op_re\"\\. \\(2 locations\\)"
78 foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
79     set op_re [string_to_regexp $op]
80     gdb_test "break ops.\"$op\"" \
81              "Breakpoint $decimal at $hex: file .*ops.adb, line $decimal."
84 # Make sure we stop correctly in each operator function.
86 foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
87     set op_re [string_to_regexp $op]
88     gdb_test "continue" \
89              "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
90              "continue to ops.\"$op\""