]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.arch/i386-signal.exp
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / i386-signal.exp
1 # Copyright 2007-2024 Free Software Foundation, Inc.
2
3 # This file is part of the GDB testsuite.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 require {is_any_target "i?86-*-*" "x86_64-*-*"}
19
20 standard_testfile
21
22 set opts {}
23 lappend opts debug
24 lappend opts nopie
25 lappend opts additional_flags=-DIS_AMD64_REGS_TARGET=[is_amd64_regs_target]
26
27 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
28 executable $opts] != "" } {
29 untested "failed to compile"
30 return -1
31 }
32
33 clean_restart $binfile
34
35 runto func
36 gdb_test "backtrace 10" \
37 "#0 ($hex in )?func.*\r\n#1 <signal handler called>\r\n#2 ($hex in )?main.*"
38
39 gdb_test "finish" "Run till exit from \#0 func.*<signal handler called>"