47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
# Copyright 2010-2014 Free Software Foundation, Inc.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
if [target_info exists gdb,nosignals] {
|
|
verbose "Skipping siginfo-infcall.exp because of nosignals."
|
|
continue
|
|
}
|
|
|
|
standard_testfile .c
|
|
|
|
if { [prepare_for_testing ${testfile}.exp $testfile $srcfile] } {
|
|
return -1
|
|
}
|
|
|
|
if ![runto_main] {
|
|
return -1
|
|
}
|
|
|
|
gdb_breakpoint "pass"
|
|
gdb_breakpoint "fail"
|
|
|
|
gdb_test "continue" "Program received signal SIGUSR1, .*" "continue to SIGUSR1"
|
|
|
|
gdb_test "p callme ()" " = 42"
|
|
|
|
set test "continue to the handler"
|
|
gdb_test_multiple "continue" $test {
|
|
-re "Breakpoint \[0-9\]+,\[^\r\n\]* pass .*\r\n$gdb_prompt $" {
|
|
pass $test
|
|
}
|
|
-re "Breakpoint \[0-9\]+,\[^\r\n\]* fail .*\r\n$gdb_prompt $" {
|
|
fail $test
|
|
}
|
|
}
|