2015-01-01 09:32:14 +00:00
|
|
|
# Copyright 1994-2015 Free Software Foundation, Inc.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# 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
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 01:35:26 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00:00
|
|
|
# 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.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2002-07-18 23:52:49 +00:00
|
|
|
if [target_info exists gdb,nointerrupts] {
|
|
|
|
verbose "Skipping interrupt.exp because of nointerrupts."
|
|
|
|
continue
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if [target_info exists gdb,noinferiorio] {
|
|
|
|
verbose "Skipping interrupt.exp because of noinferiorio."
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
|
test suite update - gdb.base/[h-m]
Convert files gdb.base/[h-m]*.exp to use standard_output_file et al.
* hook-stop-continue.exp, hook-stop-frame.exp, huge.exp,
included.exp, inferior-died.exp, infnan.exp, info-fun.exp,
info-macros.exp, info-os.exp, info-proc.exp, info-target.exp,
infoline.exp, interp.exp, interrupt.exp, jit-simple.exp,
jit-so.exp, jump.exp, kill-after-signal.exp, label.exp, langs.exp,
lineinc.exp, list.exp, logical.exp, long_long.exp, longjmp.exp,
macscp.exp, maint.exp, memattr.exp, mips_pro.exp, miscexprs.exp,
morestack.exp, moribund-step.exp, multi-forks.exp: Use
standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 18:51:31 +00:00
|
|
|
standard_testfile
|
2009-01-20 15:33:14 +00:00
|
|
|
|
|
|
|
set options { debug }
|
|
|
|
if { ! [target_info exists gdb,nosignals] } {
|
|
|
|
lappend options "additional_flags=-DSIGNALS"
|
|
|
|
}
|
|
|
|
|
test suite update - gdb.base/[h-m]
Convert files gdb.base/[h-m]*.exp to use standard_output_file et al.
* hook-stop-continue.exp, hook-stop-frame.exp, huge.exp,
included.exp, inferior-died.exp, infnan.exp, info-fun.exp,
info-macros.exp, info-os.exp, info-proc.exp, info-target.exp,
infoline.exp, interp.exp, interrupt.exp, jit-simple.exp,
jit-so.exp, jump.exp, kill-after-signal.exp, label.exp, langs.exp,
lineinc.exp, list.exp, logical.exp, long_long.exp, longjmp.exp,
macscp.exp, maint.exp, memattr.exp, mips_pro.exp, miscexprs.exp,
morestack.exp, moribund-step.exp, multi-forks.exp: Use
standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 18:51:31 +00:00
|
|
|
if {[build_executable $testfile.exp $testfile $srcfile $options] == -1} {
|
|
|
|
untested $testfile.exp
|
|
|
|
return -1
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gdb_start
|
|
|
|
|
|
|
|
|
|
|
|
if ![file exists $binfile] then {
|
|
|
|
perror "$binfile does not exist."
|
|
|
|
return 0
|
|
|
|
} else {
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load $binfile
|
|
|
|
# Hope this is unix :-)
|
2010-06-10 19:48:20 +00:00
|
|
|
gdb_test "shell stty intr '^C'" ".*" \
|
1999-04-16 01:35:26 +00:00
|
|
|
"set interrupt character in interrupt.exp"
|
|
|
|
if [runto_main] then {
|
2015-04-07 17:19:29 +00:00
|
|
|
set msg "process is alive"
|
|
|
|
gdb_test_multiple "continue" $msg {
|
|
|
|
-re "\r\ntalk to me baby\r\n" {
|
|
|
|
pass $msg
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-07 17:19:29 +00:00
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
# This should appear twice, once for the echo and once for the
|
2015-04-07 17:19:29 +00:00
|
|
|
# program's output.
|
2015-04-07 17:19:29 +00:00
|
|
|
|
|
|
|
set msg "child process ate our char"
|
1999-04-16 01:35:26 +00:00
|
|
|
send_gdb "a\n"
|
2015-04-07 17:19:29 +00:00
|
|
|
gdb_test_multiple "" $msg {
|
2015-04-07 17:19:29 +00:00
|
|
|
-re "^a\r\na\r\n$" {
|
2015-04-07 17:19:29 +00:00
|
|
|
pass $msg
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-07 17:19:29 +00:00
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
# Wait until the program is in the read system call again.
|
|
|
|
sleep 2
|
|
|
|
|
|
|
|
# Cntrl-c may fail for simulator targets running on a BSD host.
|
|
|
|
# This is the result of a combination of the read syscall
|
|
|
|
# being restarted and gdb capturing the cntrl-c signal.
|
|
|
|
|
|
|
|
# Cntrl-c may fail for simulator targets on slow hosts.
|
|
|
|
# This is because there is a race condition between entering
|
|
|
|
# the read and delivering the cntrl-c.
|
|
|
|
|
|
|
|
send_gdb "\003"
|
2015-04-07 17:19:29 +00:00
|
|
|
set msg "send_gdb control C"
|
|
|
|
gdb_test_multiple "" $msg {
|
1999-04-16 01:35:26 +00:00
|
|
|
-re "Program received signal SIGINT.*$gdb_prompt $" {
|
2015-04-07 17:19:29 +00:00
|
|
|
pass $msg
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 17:19:29 +00:00
|
|
|
set msg "call function when asleep"
|
1999-04-16 01:35:26 +00:00
|
|
|
send_gdb "p func1 ()\n"
|
2015-04-07 17:19:29 +00:00
|
|
|
gdb_test_multiple "" $msg {
|
|
|
|
-re " = 4.*$gdb_prompt $" {
|
|
|
|
pass $msg
|
|
|
|
}
|
2001-10-29 17:38:11 +00:00
|
|
|
-re ".*Program received signal SIG(SEGV|ILL).*$gdb_prompt $" {
|
1999-04-16 01:35:26 +00:00
|
|
|
setup_xfail "i*86-pc-linux*-gnu*"
|
|
|
|
fail "child died when we called func1, skipped rest of tests"
|
|
|
|
return
|
|
|
|
}
|
1999-06-28 16:06:02 +00:00
|
|
|
-re "$gdb_prompt $" {
|
|
|
|
# On HPUX-11.0 'send "p func1 ()"' above
|
|
|
|
# terminates the program. A defect is pending on this
|
|
|
|
# issue [defect #DTS CHFts24203]. Hence calling setup_xfail
|
|
|
|
# below.
|
1999-08-02 23:48:37 +00:00
|
|
|
setup_xfail "hppa*-*-*11*" CHFts24203
|
1999-06-28 16:06:02 +00:00
|
|
|
fail "call function when asleep (wrong output)"
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
default {
|
|
|
|
|
|
|
|
# This fail probably happens whenever we use /proc (we
|
|
|
|
# don't use PRSABORT), but apparently also happens on
|
|
|
|
# other machines as well.
|
|
|
|
|
|
|
|
setup_xfail "sparc*-*-solaris2*"
|
|
|
|
setup_xfail "i*86-*-solaris2*"
|
|
|
|
setup_xfail "*-*-sysv4*"
|
|
|
|
setup_xfail "vax-*-*"
|
|
|
|
setup_xfail "alpha-*-*"
|
2003-08-29 11:42:28 +00:00
|
|
|
setup_xfail "*-*-*bsd*"
|
1999-04-16 01:35:26 +00:00
|
|
|
setup_xfail "*-*-hpux*"
|
|
|
|
setup_xfail "*-*-*lynx*"
|
2015-04-07 17:19:29 +00:00
|
|
|
fail "$msg (stays asleep)"
|
1999-04-16 01:35:26 +00:00
|
|
|
# Send_Gdb a newline to wake it up
|
|
|
|
send_gdb "\n"
|
|
|
|
gdb_test "" " = 4" "call function after waking it"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Now try calling the function again.
|
|
|
|
gdb_test "p func1 ()" " = 4" "call function a second time"
|
|
|
|
|
|
|
|
# And the program should still be doing the same thing.
|
|
|
|
# The optional trailing \r\n is in case we sent a newline above
|
|
|
|
# to wake the program, in which case the program now sends it
|
|
|
|
# back. We check for it either here or in the next gdb_expect
|
|
|
|
# command, because which one it ends up in is timing dependent.
|
|
|
|
send_gdb "continue\n"
|
|
|
|
# For some reason, i386-*-sysv4 gdb fails to issue the Continuing
|
|
|
|
# message, but otherwise appears normal (FIXME).
|
2015-04-07 17:19:29 +00:00
|
|
|
|
|
|
|
set msg "continue"
|
|
|
|
gdb_test_multiple "" "$msg" {
|
|
|
|
-re "^continue\r\nContinuing.\r\n(\r\n|)$" {
|
|
|
|
pass $msg
|
|
|
|
}
|
|
|
|
-re "^continue\r\n\r\n" {
|
|
|
|
fail "$msg (missing Continuing.)"
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
send_gdb "data\n"
|
|
|
|
# The optional leading \r\n is in case we sent a newline above
|
|
|
|
# to wake the program, in which case the program now sends it
|
|
|
|
# back.
|
1999-06-28 16:06:02 +00:00
|
|
|
# FIXME: The pattern below leads to an expected success on HPUX-11.0
|
|
|
|
# but the success is spurious. Need to provide the right reg.expr.
|
|
|
|
# here.
|
2015-04-07 17:19:29 +00:00
|
|
|
|
|
|
|
set msg "echo data"
|
|
|
|
gdb_test_multiple "" $msg {
|
|
|
|
-re "^(\r\n|)data\r\ndata\r\n$" {
|
|
|
|
pass $msg
|
|
|
|
}
|
|
|
|
-re "Undefined command.*$gdb_prompt " {
|
|
|
|
fail $msg
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
2009-01-20 15:33:14 +00:00
|
|
|
if { ! [target_info exists gdb,nosignals] } {
|
|
|
|
# Wait until the program is in the read system call again.
|
|
|
|
sleep 2
|
|
|
|
|
|
|
|
# Stop the program for another test.
|
|
|
|
set msg "Send Control-C, second time"
|
|
|
|
send_gdb "\003"
|
|
|
|
gdb_test_multiple "" "$msg" {
|
|
|
|
-re "Program received signal SIGINT.*$gdb_prompt $" {
|
|
|
|
pass "$msg"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# The "signal" command should deliver the correct signal and
|
|
|
|
# return to the loop.
|
|
|
|
set msg "signal SIGINT"
|
|
|
|
gdb_test_multiple "signal SIGINT" "$msg" {
|
2015-04-07 17:19:29 +00:00
|
|
|
-re "^signal SIGINT\r\nContinuing with signal SIGINT.\r\n(\r\n|)$" {
|
|
|
|
pass "$msg"
|
|
|
|
}
|
2009-01-20 15:33:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# We should be back in the loop.
|
|
|
|
send_gdb "more data\n"
|
2015-04-07 17:19:29 +00:00
|
|
|
|
|
|
|
set msg "echo more data"
|
|
|
|
gdb_test_multiple "" $msg {
|
|
|
|
-re "^(\r\n|)more data\r\nmore data\r\n$" {
|
|
|
|
pass $msg
|
|
|
|
}
|
2009-01-20 15:33:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 17:19:29 +00:00
|
|
|
set msg "send end of file"
|
1999-04-16 01:35:26 +00:00
|
|
|
send_gdb "\004"
|
2015-04-07 17:19:29 +00:00
|
|
|
gdb_test_multiple "" $msg {
|
2011-03-07 16:03:04 +00:00
|
|
|
-re "end of file.*$inferior_exited_re normally.*$gdb_prompt $" {
|
2015-04-07 17:19:29 +00:00
|
|
|
pass $msg
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|