Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / iwide.exp
CommitLineData
88b9d363 1# Copyright 2012-2022 Free Software Foundation, Inc.
cdde3dfb
JG
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 "ada.exp"
17
7a82e903
PA
18if { [skip_ada_tests] } { return -1 }
19
cdde3dfb
JG
20standard_ada_testfile p
21
22if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug additional_flags=-gnat05 ]] != "" } {
23 return -1
24}
25
26clean_restart ${testfile}
27
5924fafa
TV
28set bp_location p.adb:[gdb_get_line_number "BREAK" ${testdir}/p.adb]
29
30# Workaround gcc PR101575.
31#runto "$bp_location"
32gdb_breakpoint "$bp_location"
33gdb_run_cmd
34set re "Breakpoint $decimal, p \\(\\) at .*:$decimal.*"
35set re_xfail "Breakpoint $decimal, p__P5b.0 \\(\\) at .*:$decimal.*"
36set ok 1
37gdb_test_multiple "" "Runto to $bp_location" {
38 -re -wrap $re {
39 if { $ok } {
40 pass $gdb_test_name
41 } else {
42 xfail $gdb_test_name
43 }
44 }
45 -re -wrap $re_xfail {
46 set ok 0
47 send_gdb "continue\n"
48 exp_continue
49 }
50}
cdde3dfb
JG
51
52gdb_test "print My_Drawable" \
53 "= \\(center => \\(x => 1, y => 2\\), radius => 3\\)"
54
55gdb_test "print s_access.all" \
56 "\\(center => \\(x => 1, y => 2\\), radius => 3\\)"
57
58gdb_test "print sp_access.all" \
59 "\\(center => \\(x => 1, y => 2\\), radius => 3\\)"
60
61gdb_test "print d_access.all" \
62 "\\(center => \\(x => 1, y => 2\\), radius => 3\\)"
63
64gdb_test "print dp_access.all" \
65 "\\(center => \\(x => 1, y => 2\\), radius => 3\\)"
This page took 1.064843 seconds and 4 git commands to generate.