exception-lto.exp revision 1.1.1.1 1 # Copyright 2024 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 # This test mimics the situation where an Ada program (including the
17 # runtime) is built with -flto. In this situation, gcc emits the
18 # exception handling functions in the DWARF -- but in a CU that is
19 # marked as coming from "C". This then triggered a bug causing the
20 # Ada catchpoint code not to find the underlying runtime functions.
21
22 require allow_ada_tests
23
24 standard_testfile .c
25
26 if {[build_executable "failed to prepare" $testfile $srcfile] == -1} {
27 return -1
28 }
29
30 # Try this test in both the C and Ada language modes.
31 foreach_with_prefix lang {c ada} {
32 clean_restart $testfile
33 gdb_test_no_output "set lang $lang"
34 gdb_test "catch exception" "Catchpoint 1: all Ada exceptions"
35 }
36