aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1995-03-24 20:05:28 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1995-03-24 20:05:28 +0000
commit8c7ab5da737e13033b77ca35bf8fdf2d6da48c12 (patch)
treecb118baa0b6c77d47a98d10bf3173fca36247231
parentfb3f84c77393f3d73f22ebd1eb4007a90ef50fd7 (diff)
downloadgdb-8c7ab5da737e13033b77ca35bf8fdf2d6da48c12.zip
gdb-8c7ab5da737e13033b77ca35bf8fdf2d6da48c12.tar.gz
gdb-8c7ab5da737e13033b77ca35bf8fdf2d6da48c12.tar.bz2
* config/vx-gdb.exp, lib/gdb.exp: Regexp cleanups (\[(\] -> \\(, etc.).
-rw-r--r--gdb/testsuite/ChangeLog2
-rw-r--r--gdb/testsuite/config/vx-gdb.exp2
-rw-r--r--gdb/testsuite/lib/gdb.exp9
3 files changed, 8 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 2641026..b9d907d 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,7 @@
Fri Mar 24 06:11:05 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
+ * config/vx-gdb.exp, lib/gdb.exp: Regexp cleanups (\[(\] -> \\(, etc.).
+
* 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,
diff --git a/gdb/testsuite/config/vx-gdb.exp b/gdb/testsuite/config/vx-gdb.exp
index 5ebcefa..c522544 100644
--- a/gdb/testsuite/config/vx-gdb.exp
+++ b/gdb/testsuite/config/vx-gdb.exp
@@ -27,7 +27,7 @@ load_lib gdb.exp
load_lib vxworks.exp
set shell_prompt "->"
-set prompt "\[(\]vxgdb\[)\]"
+set prompt "\\(vxgdb\\)"
#
# gdb_version -- extract and print the version number of gcc
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 2ea53e7..e91db0e 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -37,10 +37,11 @@ if ![info exists GDBFLAGS] then {
set GDBFLAGS "-nx"
}
-# set the prompt if it doesn't exist
+# The variable prompt is a regexp which matches the gdb prompt. Set it if it
+# is not already set.
global prompt
if ![info exists prompt] then {
- set prompt "\[(\]gdb\[)\]"
+ set prompt "\\(gdb\\)"
}
global usestubs
@@ -62,7 +63,7 @@ proc default_gdb_version {} {
global GDBFLAGS
if {[which $GDB] != 0} then {
set tmp [exec echo "q" | $GDB -nw $GDBFLAGS]
- regexp " \[0-9\.\]+" $tmp version
+ regexp " \[0-9.\]+" $tmp version
clone_output "[which $GDB] version$version -nw $GDBFLAGS \n"
} else {
warning "$GDB does not exist"
@@ -308,7 +309,7 @@ proc gdb_test { args } {
send "\n"
perror "Window too small."
}
- -re "\[(\]+y or n\[)\]+ " {
+ -re "\\(y or n\\) " {
send "n\n"
perror "Got interactive prompt."
}