[gdb/symtab] Fix gdb.base/fission-macro.exp with unix/-m32
[binutils-gdb.git] / gdb / testsuite / gdb.threads / interrupted-hand-call.exp
blob81221b4708455899c8ecea2c39f328c3fe9f06e2
1 # Copyright (C) 2004-2024 Free Software Foundation, Inc.
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.
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.
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/>.
16 # Test recovering from a hand function call that gets interrupted
17 # by a signal in another thread.
19 set NR_THREADS 4
21 standard_testfile
23 # Some targets can't do function calls, so don't even bother with this
24 # test.
25 require {!target_info exists gdb,cannot_call_functions}
27 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "additional_flags=-DNR_THREADS=$NR_THREADS"]] != "" } {
28     return -1
31 clean_restart ${binfile}
33 if { ![runto_main] } {
34     return 0
37 gdb_test "break all_threads_running" \
38          "Breakpoint 2 at .*: file .*${srcfile}, line .*" \
39          "breakpoint on all_threads_running"
41 # Run the program and make sure GDB reports that we stopped after
42 # hitting breakpoint 2 in all_threads_running().
44 gdb_test "continue" \
45          ".*Breakpoint 2, all_threads_running ().*" \
46          "run to all_threads_running"
48 # NOTE: Don't turn on scheduler-locking here.
49 # We want the main thread (hand_call_with_signal) and
50 # thread 1 (sigabrt_handler) to both run.
52 gdb_test "call hand_call_with_signal()" \
53     ".*in another thread.*" \
54     "hand-call interrupted by signal in another thread"
56 # Verify dummy stack frame is still present.
58 gdb_test "maint print dummy-frames" ".*stack=.*" "dummy stack frame present"
60 # Continuing now should exit the hand-call and pop the dummy frame.
62 gdb_test "continue" ".*" "finish hand-call"
64 gdb_test_multiple "maint print dummy-frames" "dummy frame popped" {
65     -re ".*stack=.*$gdb_prompt $" {
66         fail "dummy frame popped"
67     }
68     -re ".*$gdb_prompt $" {
69         pass "dummy frame popped"
70     }
73 # Continue one last time, the program should exit normally.
75 gdb_continue_to_end "" continue 1