]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/jit-reader-exec.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / jit-reader-exec.exp
CommitLineData
1d506c26 1# Copyright 2018-2024 Free Software Foundation, Inc.
2cd8cc0b
TT
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# Regression test for a jit.c bug. Previously it would crash if an
17# inferior that used the JIT API then exec'd a program that did not
18# use it.
19
24d59b55 20require {istarget "*-linux*"}
2cd8cc0b 21
922a7c7c 22standard_testfile jit-reader-exec.c
2cd8cc0b 23
922a7c7c 24set testfile2 "jit-reader-execd"
2cd8cc0b
TT
25set srcfile2 ${testfile2}.c
26set binfile2 [standard_output_file ${testfile2}]
27
32e0d369
TV
28if {[gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" \
29 executable {debug}] != ""} {
2cd8cc0b
TT
30 untested "failed to compile"
31 return -1
32}
33
32e0d369
TV
34if { [is_remote target] } {
35 set binfile2 [gdb_remote_download target $binfile2]
36}
37
38set compile_options [list debug additional_flags=-DPROGRAM=\"$binfile2\"]
39
40if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
2cd8cc0b
TT
41 executable $compile_options] != ""} {
42 untested "failed to compile"
43 return -1
44}
45
46clean_restart $binfile
47
48if {![runto_main]} {
2cd8cc0b
TT
49 return
50}
51
52delete_breakpoints
53gdb_test "continue" "Inferior .* exited normally.*"