* config/sh.exp: New file.
authorBob Manson <manson@cygnus>
Wed, 5 Feb 1997 06:25:42 +0000 (06:25 +0000)
committerBob Manson <manson@cygnus>
Wed, 5 Feb 1997 06:25:42 +0000 (06:25 +0000)
* config/slite.exp: Try to connect multiple times to the board
before rebooting. Only send a "monitor run" if need_monitor_run
is set.

* gdb.base/break.exp: Don't do the "stub continue" test if
the target has gdb_stub set.

* gdb.base/callfuncs.exp: Increase the timeout.

* gdb.base/interrupt.exp: Don't even try to compile the testcase
if the target has gdb,noinferiorio set.

* gdb.base/list.exp: Increase match_max to 10000 characters.

* gdb.base/sigall.exp: Check for gdb,nosignals on the target.

* gdb.base/watchpoint.exp: Check for gdb,noinferiorio on the
target.

* lib/gdb.exp(gdb_run_cmd): Fix for targets that use stubs.

Misc fixes for sparclite and SH.

gdb/testsuite/config/.Sanitize
gdb/testsuite/config/sh.exp [new file with mode: 0644]
gdb/testsuite/gdb.base/break.exp
gdb/testsuite/gdb.base/watchpoint.exp
gdb/testsuite/lib/gdb.exp

index 4c407cd..e4b80d7 100644 (file)
@@ -56,6 +56,7 @@ mt-vxworks
 netware.exp
 nind.exp
 rom68k.exp
+sh.exp
 sim.exp
 slite.exp
 udi.exp
diff --git a/gdb/testsuite/config/sh.exp b/gdb/testsuite/config/sh.exp
new file mode 100644 (file)
index 0000000..1a2f7a9
--- /dev/null
@@ -0,0 +1 @@
+load_lib ../config/monitor.exp
index a027b2f..099fd27 100644 (file)
@@ -157,8 +157,9 @@ if ![target_info exists use_gdb_stub] {
     timeout                { fail "run until function breakpoint (timeout)" }
   }
 } else {
-    gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:60.*60\[\t \]+if .argc.*\{" \
-           "stubs continue"
+    if ![target_info exists gdb_stub] {
+       gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:60.*60\[\t \]+if .argc.*\{" "stub continue"
+    }
 }
 
 #
@@ -308,6 +309,8 @@ proc test_next_with_recursion {} {
 
     delete_breakpoints
 
+    set timeout 20;
+
     gdb_test next "\[0-9\]*\[\t \]+return \\(value\\);.*" \
            "next over recursive call"
 
index 25308df..e4bf9b4 100644 (file)
@@ -372,10 +372,9 @@ proc test_stepping {} {
 # Test stepping and other mundane operations with watchpoints enabled
 proc test_watchpoint_triggered_in_syscall {} {
     global gdb_prompt
-    global noinferiorio
     global noresults
 
-    if $noinferiorio {
+    if [target_info exists gdb,noinferiorio] {
        verbose "Skipping test_watchpoint_triggered_in_syscall due to noinferiorio"
        return
     }
index a492004..157c210 100644 (file)
@@ -182,12 +182,14 @@ proc gdb_run_cmd {args} {
     if [target_info exists use_gdb_stub] {
        send_gdb  "jump *start\n"
        expect {
+           -re "Continuing at \[^\r\n\]*\[\r\n\]" {
+               if ![target_info exists gdb_stub] {
+                   return;
+               }
+           }
            -re "Line.* Jump anyway.*y or n. $" {
                send_gdb "y\n"
-               expect {
-                   -re "Continuing.*$gdb_prompt $" {}
-                   timeout { perror "Jump to start() failed (timeout)"; return }
-               }
+               exp_continue;
             }
            -re "No symbol.*context.*$gdb_prompt $" {}
            -re "The program is not being run.*$gdb_prompt $" {
@@ -195,7 +197,13 @@ proc gdb_run_cmd {args} {
            }
            timeout { perror "Jump to start() failed (timeout)"; return }
        }
-       send_gdb "continue\n"
+       if [target_info exists gdb_stub] {
+           expect {
+               -re ".*$gdb_prompt $" {
+                   send_gdb "continue\n"
+               }
+           }
+       }
        return
     }
     send_gdb "run $args\n"
@@ -255,7 +263,7 @@ proc runto { function } {
        -re "Break.* at .*:$decimal.*$gdb_prompt $" {
            return 1
        }
-       -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in $function.*$gdb_prompt $" { 
+       -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
            return 1
        }
        -re "$gdb_prompt $" {