997f66ecb35d2a439a90e37107ea092ed6f273ff
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / jit-reader-exec.exp
1 # Copyright 2018-2021 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 # 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
20 if { ![istarget "*-linux*"] } then {
21 return
22 }
23
24 standard_testfile jit-reader-exec.c
25
26 set testfile2 "jit-reader-execd"
27 set srcfile2 ${testfile2}.c
28 set binfile2 [standard_output_file ${testfile2}]
29
30 set compile_options [list debug additional_flags=-DPROGRAM=\"$binfile2\"]
31
32 if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
33 executable $compile_options] != ""} {
34 untested "failed to compile"
35 return -1
36 }
37
38 if {[gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" \
39 executable $compile_options] != ""} {
40 untested "failed to compile"
41 return -1
42 }
43
44 clean_restart $binfile
45
46 if {![runto_main]} {
47 fail "can't run to main"
48 return
49 }
50
51 delete_breakpoints
52 gdb_test "continue" "Inferior .* exited normally.*"
This page took 0.033536 seconds and 3 git commands to generate.