
This commit is the result of the following actions: - Running gdb/copyright.py to update all of the copyright headers to include 2024, - Manually updating a few files the copyright.py script told me to update, these files had copyright headers embedded within the file, - Regenerating gdbsupport/Makefile.in to refresh it's copyright date, - Using grep to find other files that still mentioned 2023. If these files were updated last year from 2022 to 2023 then I've updated them this year to 2024. I'm sure I've probably missed some dates. Feel free to fix them up as you spot them.
80 lines
2.3 KiB
Text
80 lines
2.3 KiB
Text
# Copyright 2019-2024 Free Software Foundation, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
require allow_shlib_tests
|
|
|
|
load_lib "ada.exp"
|
|
|
|
require allow_ada_tests shared_gnat_runtime_has_debug_info
|
|
|
|
standard_ada_testfile foo
|
|
|
|
set srcfile2 [file join [file dirname $srcfile] some_package.adb]
|
|
set sofile [standard_output_file libsome_package.so]
|
|
|
|
set outdir [file dirname $binfile]
|
|
|
|
# Create the shared library.
|
|
if {[gdb_compile_shlib $srcfile2 $sofile {ada debug}] != ""} {
|
|
return -1
|
|
}
|
|
|
|
# Set linkarg such that the executable can find the shared library.
|
|
if {[istarget "*-*-mingw*"]
|
|
|| [istarget *-*-cygwin*]
|
|
|| [istarget *-*-pe*]} {
|
|
# Do not need anything.
|
|
set linkarg ""
|
|
} elseif {[istarget *-*-freebsd*] || [istarget *-*-openbsd*]} {
|
|
set linkarg "-Wl,-rpath,$outdir"
|
|
} else {
|
|
set linkarg "-Wl,-rpath,\\\$ORIGIN"
|
|
}
|
|
|
|
# Make sure we link against the shared GNAT run time.
|
|
set gnatbind_options [list -bargs -shared -margs]
|
|
|
|
# Link against the shared library.
|
|
set gnatlink_options [list -largs $linkarg -Wl,-lsome_package -margs]
|
|
|
|
set options [list debug]
|
|
foreach option [concat $gnatbind_options $gnatlink_options] {
|
|
lappend options [concat "additional_flags=" $option]
|
|
}
|
|
|
|
# Create executable.
|
|
if {[gdb_compile_ada $srcfile $binfile executable $options] != ""} {
|
|
return -1
|
|
}
|
|
|
|
clean_restart ${testfile}
|
|
|
|
# Do whatever is necessary to make sure that the shared library is
|
|
# loaded for remote targets.
|
|
gdb_load_shlib $sofile
|
|
|
|
if {![runto_main]} {
|
|
return 0
|
|
}
|
|
|
|
gdb_test "catch exception some_kind_of_error" \
|
|
"Catchpoint \[0-9\]+: `some_kind_of_error' Ada exception"
|
|
|
|
gdb_test "cont" \
|
|
"Catchpoint \[0-9\]+, .* at .*foo\.adb:\[0-9\]+.*" \
|
|
"caught the exception"
|
|
|
|
gdb_test "print \$_ada_exception = some_package.some_kind_of_error'Address" \
|
|
" = true"
|