1 # Copyright 2012 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/>.
18 if { [skip_ada_tests] } { return -1 }
20 set testdir "operator_bp"
21 set testfile "${testdir}/ops_test"
22 set srcfile ${srcdir}/${subdir}/${testfile}.adb
23 set binfile ${objdir}/${subdir}/${testfile}
25 file mkdir ${objdir}/${subdir}/${testdir}
26 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
30 clean_restart ${testfile}
32 set bp_location [gdb_get_line_number "BEGIN" ${testdir}/ops_test.adb]
33 runto "ops_test.adb:$bp_location"
35 # Set breakpoints for all operators, using just the operator name in quotes.
37 foreach op { "+" "-" } {
38 set op_re [string_to_regexp $op]
39 gdb_test "break \"$op\"" \
40 "Breakpoint $decimal at $hex: \"$op_re\"\. \\(2 locations\\)"
43 foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
44 set op_re [string_to_regexp $op]
45 gdb_test "break \"$op\"" \
46 "Breakpoint $decimal at $hex: file .*ops.adb, line $decimal."
49 # Make sure we stop correctly in each operator function.
51 foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
52 set op_re [string_to_regexp $op]
54 "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
58 # Perform the same test, but using the qualified name of the operator,
59 # instead of the just the operator name (as in 'break ops."+"').
61 clean_restart ${testfile}
63 runto "ops_test.adb:$bp_location"
65 # Set breakpoints for all operators, using just the operator name in quotes.
67 foreach op { "+" "-" } {
68 set op_re [string_to_regexp $op]
69 gdb_test "break ops.\"$op\"" \
70 "Breakpoint $decimal at $hex: ops\\.\"$op_re\"\. \\(2 locations\\)"
73 foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
74 set op_re [string_to_regexp $op]
75 gdb_test "break ops.\"$op\"" \
76 "Breakpoint $decimal at $hex: file .*ops.adb, line $decimal."
79 # Make sure we stop correctly in each operator function.
81 foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
82 set op_re [string_to_regexp $op]
84 "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
85 "continue to ops.\"$op\""