]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.ada/O2_float_param.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / O2_float_param.exp
1 # Copyright 2013-2023 Free Software Foundation, Inc.
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
16 load_lib "ada.exp"
17
18 if { [skip_ada_tests] } { return -1 }
19
20 standard_ada_testfile foo
21
22 set have_xfail 0
23 if {[is_aarch64_target]} {
24 if { [gcc_major_version] <= 8 } {
25 set have_xfail 1
26 }
27 }
28
29 foreach_with_prefix scenario {all minimal} {
30 set flags [list debug \
31 optimize=-O2 \
32 additional_flags=-fgnat-encodings=$scenario]
33
34 if {[gdb_compile_ada "${srcfile}" "${binfile}-${scenario}" executable $flags] != ""} {
35 return -1
36 }
37
38 clean_restart ${testfile}-${scenario}
39
40 runto "increment"
41
42 set re \
43 "#0\\s+callee\\.increment \\(val(=val@entry)?=99\\.0, msg=\\.\\.\\.\\).*"
44 set re_different_entry_val \
45 "#0\\s+callee\\.increment \\(val=99.0, val@entry=.*, msg=\\.\\.\\.\\).*"
46 gdb_test_multiple "frame" "" {
47 -re -wrap $re {
48 pass $gdb_test_name
49 }
50 -re -wrap $re_different_entry_val {
51 if { $have_xfail } {
52 # GCC PR98148
53 xfail $gdb_test_name
54 } else {
55 fail $gdb_test_name
56 }
57 }
58 }
59 }