Copyright updates for 2007.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / interrupt.exp
index aa9cc2e85e2e476af54574ac12e6b289a93b043e..2b1b3840b6b569789dd06e4560db67c131f5a58b 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2007
+# 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
 # 
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
 
 # Please email any bugs, comments, and/or additions to this file to:
 # bug-gdb@prep.ai.mit.edu
 
-if [host_info exists name] {
-    if [board_info host exists gdb,nointerrupts] {
-       verbose "Skipping interrupt.exp because of nointerrupts."
-       continue
-    }
+if [target_info exists gdb,nointerrupts] {
+    verbose "Skipping interrupt.exp because of nointerrupts."
+    continue
+}
+
+if [target_info exists gdb,noinferiorio] {
+    verbose "Skipping interrupt.exp because of noinferiorio."
+    return
 }
 
 if $tracelevel then {
@@ -35,13 +39,8 @@ set testfile interrupt
 set srcfile ${testfile}.c
 set binfile ${objdir}/${subdir}/${testfile}
 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
-    perror "Couldn't compile ${srcfile}"
-    return -1
-}
-
-if [target_info exists gdb,noinferiorio] {
-    verbose "Skipping interrupt.exp because of noinferiorio."
-    return
+     untested interrupt.exp
+     return -1
 }
 
 gdb_start
@@ -58,7 +57,7 @@ if ![file exists $binfile] then {
        "set interrupt character in interrupt.exp"
     if [runto_main] then {
        send_gdb "continue\n"
-       expect {
+       gdb_expect {
            -re "\r\ntalk to me baby\r\n$" {
                pass "child process is alive"
            }
@@ -70,7 +69,7 @@ if ![file exists $binfile] then {
        # SunOS4, it only appears once.  Don't worry about it, I imagine
        # dejagnu has just done something to the tty modes.
        send_gdb "a\n"
-       expect {
+       gdb_expect {
            -re "^a\r\n(|a\r\n)$" {
                pass "child process ate our char"
            }
@@ -80,25 +79,40 @@ if ![file exists $binfile] then {
        # 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"
-       expect {
-           -re "Program received signal SIGINT.*$prompt $" {
+       gdb_expect {
+           -re "Program received signal SIGINT.*$gdb_prompt $" {
                pass "send_gdb control C"
            }
-           -re ".*$prompt $" { fail "send_gdb control C" }
+           -re ".*$gdb_prompt $" { fail "send_gdb control C" }
            timeout { fail "send_gdb control C (timeout)" }
            eof { fail "send_gdb control C (eof)" }
        }
 
        send_gdb "p func1 ()\n"
-       expect {
-           -re " = 4.*$prompt $" { pass "call function when asleep" }
-           -re ".*Program received signal SIGSEGV.*$prompt $" {
-               setup_xfail "i*86-pc-linux*-gnu"
+       gdb_expect {
+           -re " = 4.*$gdb_prompt $" { pass "call function when asleep" }
+           -re ".*Program received signal SIG(SEGV|ILL).*$gdb_prompt $" {
+               setup_xfail "i*86-pc-linux*-gnu*"
                fail "child died when we called func1, skipped rest of tests"
                return
            }
-           -re "$prompt $" { fail "call function when asleep (wrong output)" }
+           -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.
+               setup_xfail "hppa*-*-*11*" CHFts24203
+               fail "call function when asleep (wrong output)"
+           }
            default {
 
                # This fail probably happens whenever we use /proc (we
@@ -107,11 +121,11 @@ if ![file exists $binfile] then {
 
                setup_xfail "sparc*-*-solaris2*"
                setup_xfail "mips-*-ultrix*"
-               setup_xfail "hppa*-*-*"
-               setup_xfail "i386*-*-bsd*"
+               setup_xfail "i*86-*-solaris2*"
                setup_xfail "*-*-sysv4*"
                setup_xfail "vax-*-*"
                setup_xfail "alpha-*-*"
+               setup_xfail "*-*-*bsd*"
                setup_xfail "*-*-irix*"
                setup_xfail "*-*-hpux*"
                setup_xfail "*-*-*lynx*"
@@ -129,15 +143,15 @@ if ![file exists $binfile] then {
        # 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 expect
+       # 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).
-       expect {
+       gdb_expect {
            -re "^continue\r\nContinuing.\r\n(\r\n|)$" { pass "continue" }
            -re "^continue\r\n\r\n" { fail "continue (missing Continuing.)" }
-           -re "$prompt $" { fail "continue" }
+           -re "$gdb_prompt $" { fail "continue" }
            timeout { fail "continue (timeout)" }
            eof { fail "continue (eof)" }
        }
@@ -146,19 +160,22 @@ if ![file exists $binfile] then {
        # 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.
-       expect {
+        # 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.
+       gdb_expect {
            -re "^(\r\n|)data\r\n(|data\r\n)$" { pass "echo data" }
            timeout { fail "echo data (timeout)" }
            eof { fail "echo data (eof)" }
        }
 
-       setup_xfail "i*86-pc-linux*-gnu"
+       setup_xfail "i*86-pc-linux*-gnu*"
        send_gdb "\004"
-       expect {
-           -re "end of file.*Program exited normally.*$prompt $" {
-               pass "send_gdb end of file"
+       gdb_expect {
+           -re "end of file.*Program exited normally.*$gdb_prompt $" {
+               pass "send end of file"
            }
-           -re "$prompt $" { fail "send end of file" }
+           -re "$gdb_prompt $" { fail "send end of file" }
            timeout { fail "send end of file (timeout)" }
            eof { fail "send end of file (eof)" }
        }
This page took 0.031824 seconds and 4 git commands to generate.