diff options
author | Fred Fish <fnf@specifix.com> | 2002-01-22 01:05:06 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2002-01-22 01:05:06 +0000 |
commit | b3ff9d9a65e3cb20bc5c8f1cced4951c6819b2c4 (patch) | |
tree | cc933ad4c67f3f1a21676ad8bdbbc121fa62a3a9 /gdb | |
parent | 64328b468d4f608c84b61d7e2aeb196b5529e1c8 (diff) | |
download | binutils-b3ff9d9a65e3cb20bc5c8f1cced4951c6819b2c4.zip binutils-b3ff9d9a65e3cb20bc5c8f1cced4951c6819b2c4.tar.gz binutils-b3ff9d9a65e3cb20bc5c8f1cced4951c6819b2c4.tar.bz2 |
2002-01-21 Fred Fish <fnf@redhat.com>
* gdb.base/restore.exp (restore_tests): Fix obvious typo, callee
not caller.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/restore.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 4d37658..c4c0fd9 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2002-01-21 Fred Fish <fnf@redhat.com> + + * gdb.base/restore.exp (restore_tests): Fix obvious typo, callee + not caller. + 2002-01-21 Jim Blandy <jimb@redhat.com> * gdb.base/reread.exp: Check that GDB properly re-reads the diff --git a/gdb/testsuite/gdb.base/restore.exp b/gdb/testsuite/gdb.base/restore.exp index 03c2941..4c7a33a 100644 --- a/gdb/testsuite/gdb.base/restore.exp +++ b/gdb/testsuite/gdb.base/restore.exp @@ -60,7 +60,7 @@ proc restore_tests { } { for {set e 1} {$e <= $limit} {incr e} { gdb_test "tbreak callee$e" "Breakpoint.*\[0-9\]*\\." \ - "tbreak caller$e" + "tbreak callee$e" gdb_test "continue" ".*/\\* callee$e \\*/" "run to callee$e" |