* gdb.base/a1-selftest.exp: Don't check for # followed by a digit
authorJim Kingdon <jkingdon@engr.sgi.com>
Fri, 24 Mar 1995 16:38:06 +0000 (16:38 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Fri, 24 Mar 1995 16:38:06 +0000 (16:38 +0000)
somewhere between `read' and `main.c'.  I'm pretty sure the
pattern ".*#\[0-9\].*" was slowing down pattern matching a lot,
and it isn't particularly useful.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/a1-selftest.exp

index 89796c7f4bdb06dbba7ad61a4b3c8a43e67f5f8a..2641026509fe202d6aaac50483da406664bb46b7 100644 (file)
@@ -1,5 +1,10 @@
 Fri Mar 24 06:11:05 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * gdb.base/a1-selftest.exp: Don't check for # followed by a digit
+       somewhere between `read' and `main.c'.  I'm pretty sure the
+       pattern ".*#\[0-9\].*" was slowing down pattern matching a lot,
+       and it isn't particularly useful.
+
        * gdb.base/scope.exp: Make test names unique.  \[(\] -> \\(.
 
 Thu Mar 23 14:58:35 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
index 9bed3fba19c79e2378f9026a8a668052f2cdc348..b2e0f33a78ce06815134ad756465ec4bc09a9344 100644 (file)
@@ -452,7 +452,7 @@ GDB.*Copyright \[0-9\]+ Free Software Foundation, Inc..*$prompt $"\
     set description "backtrace through signal handler"
     send "backtrace\n"
     expect {
-       -re "#0.*read.*#\[1-9\].*main.c.*$prompt $" {
+       -re "#0.*read.*in main \\(.*\\) at .*main\\.c.*$prompt $" {
            pass "$description"
        }
        -re ".*$prompt $" {