Update copyright year range in header of all files managed by GDB
[binutils-gdb.git] / gdb / testsuite / gdb.ada / call_pn.exp
blobd9eee40d23dc1d7d01a2435d78b52c56a26ea7cd
1 # Copyright 2010-2023 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 if { [skip_ada_tests] } { return -1 }
20 standard_ada_testfile foo
22 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
23   return -1
26 clean_restart ${testfile}
28 set bp_location [gdb_get_line_number "STOP" ${testdir}/foo.adb]
29 if {![runto "foo.adb:$bp_location"]} {
30   return
33 # The xfail mentioned below triggers for the "after" print, but may not
34 # trigger for the "before" print, though it will for -readnow.  This is
35 # related to PR25764 - "LOC_UNRESOLVED symbol missing from partial symtab".
36 # Stabilize test results by ensuring that the xfail triggers for the "before"
37 # print.
38 gdb_test_no_output "maint expand-symtabs"
40 # The xfail is for PR gcc/94469, which occurs with target board
41 # unix/-flto/-O0/-flto-partition=none/-ffat-lto-objects and gcc-8 and later.
42 # Note: We don't check for the filename in xfail_re because it might be
43 # wrong, filed as gdb PR25771.
44 set xfail_re \
45     [multi_line \
46          "Multiple matches for last_node_id" \
47          "\\\[0\\\] cancel" \
48          "\\\[1\\\] pck\.last_node_id at .*.adb:17" \
49          "\\\[2\\\] pck\.last_node_id at .*.adb:17" \
50          "> $"]
52 # Make sure that last_node_id is set to zero...
53 gdb_test_multiple "print last_node_id" "print last_node_id before calling pn" {
54     -re $xfail_re {
55         xfail $gdb_test_name
56         # One of the choices will print the correct value, the other one
57         # <optimized out>.  Since we don't known which one to choose to get
58         # the correct value, cancel.
59         gdb_test_multiple "0" "cancel after xfail 1" {
60             -re -wrap "cancelled" {
61             }
62         }
63     }
64     -re -wrap "= 0" {
65         pass $gdb_test_name
66     }
69 # Now, call procedure Pn, which should set Last_Node_Id to the value
70 # of the parameter used in the function call.  Verify that we can print
71 # the returned value correctly, while we're at it.
72 gdb_test "print pn(4321)" "= 4321"
74 # Make sure that last_node_id now has the correct value...
75 gdb_test_multiple "print last_node_id" "print last_node_id after calling pn" {
76     -re $xfail_re {
77         xfail $gdb_test_name
78         # Cancel
79         gdb_test_multiple "0" "cancel after xfail 2" {
80             -re -wrap "cancelled" {
81             }
82         }
83     }
84     -re -wrap "= 4321" {
85         pass $gdb_test_name
86     }