* gdb.c++/demangle.exp: Use gdb_test_exact, rather than demangle
authorJim Kingdon <jkingdon@engr.sgi.com>
Tue, 7 Jun 1994 16:40:10 +0000 (16:40 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Tue, 7 Jun 1994 16:40:10 +0000 (16:40 +0000)
(which was basically just a local version of the same thing).  In
addition to avoiding duplication, gdb_test_exact is faster.
* lib/gdb.exp (gdb_test_exact): Fix typo.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/gdb.exp

index d886f6ca7586c0e556776c87be1c46ca3ca0aeaf..8230dd5c10b101d888cc13eb0ea4cbaedca151da 100644 (file)
@@ -1,7 +1,13 @@
 Tue Jun  7 08:30:15 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * gdb.c++/demangle.exp: Use gdb_test_exact, rather than demangle
+       (which was basically just a local version of the same thing).  In
+       addition to avoiding duplication, gdb_test_exact is faster.
+       * lib/gdb.exp (gdb_test_exact): Fix typo.
+
        * lib/gdb.exp (delete_breakpoints): If there were no breakpoints,
        don't give an error.
+
        * gdb.base/term.exp: Call delete_breakpoints before starting.
 
        * gdb.base/Makefile.in (EXECUTABLES): Remove t10.
index 8ca6876e1f15f83d60873eed2e13e048bd4ad09f..35ac4e124c65835a5cc66efb3afd0ae0433450e8 100644 (file)
@@ -271,7 +271,7 @@ proc string_to_regexp {str} {
 
 proc gdb_test_exact { args } {
     set command [lindex $args 0]
-    set pattern [string_to_regexp [lindex args 1]]
+    set pattern [string_to_regexp [lindex $args 1]]
     if [llength $args]==3 then {
        set message [lindex $args 2]
     } else {