Update years in copyright notice for the GDB files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.threads / interrupted-hand-call.exp
CommitLineData
c5a57081
JB
1# Copyright (C) 2004, 2007-2008, 2010-2012 Free Software Foundation,
2# Inc.
b89667eb
DE
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17# Test recovering from a hand function call that gets interrupted
18# by a signal in another thread.
19
20set NR_THREADS 4
21
0efbbabc 22standard_testfile
b89667eb 23
0efbbabc 24if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "additional_flags=-DNR_THREADS=$NR_THREADS"]] != "" } {
b89667eb
DE
25 return -1
26}
27
28# Some targets can't do function calls, so don't even bother with this
29# test.
30if [target_info exists gdb,cannot_call_functions] {
31 setup_xfail "*-*-*" 2416
32 fail "This target can not call functions"
33 continue
34}
35
0efbbabc 36clean_restart ${binfile}
b89667eb
DE
37
38if { ![runto_main] } {
39 fail "Can't run to main"
40 return 0
41}
42
43gdb_test "break all_threads_running" \
44 "Breakpoint 2 at .*: file .*${srcfile}, line .*" \
45 "breakpoint on all_threads_running"
46
47# Run the program and make sure GDB reports that we stopped after
48# hitting breakpoint 2 in all_threads_running().
49
50gdb_test "continue" \
51 ".*Breakpoint 2, all_threads_running ().*" \
52 "run to all_threads_running"
53
54# NOTE: Don't turn on scheduler-locking here.
55# We want the main thread (hand_call_with_signal) and
56# thread 1 (sigabrt_handler) to both run.
57
58gdb_test "call hand_call_with_signal()" \
59 ".*in another thread.*" \
60 "hand-call interrupted by signal in another thread"
61
62# Verify dummy stack frame is still present.
63
64gdb_test "maint print dummy-frames" ".*stack=.*" "dummy stack frame present"
65
66# Continuing now should exit the hand-call and pop the dummy frame.
67
f6978de9 68gdb_test "continue" ".*" "finish hand-call"
b89667eb
DE
69
70gdb_test_multiple "maint print dummy-frames" "dummy frame popped" {
71 -re ".*stack=.*$gdb_prompt $" {
72 fail "dummy frame popped"
73 }
74 -re ".*$gdb_prompt $" {
75 pass "dummy frame popped"
76 }
77}
78
79# Continue one last time, the program should exit normally.
80
eceb0c5f 81gdb_continue_to_end "" continue 1
b89667eb
DE
82
83return 0
This page took 0.475029 seconds and 4 git commands to generate.