diff options
author | Jeff Law <law@redhat.com> | 1995-07-20 20:33:39 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1995-07-20 20:33:39 +0000 |
commit | f1c9e4462a0f426fe83af8c2aa98b4980911e801 (patch) | |
tree | 08a896adb990b5b7d3d51d42a8276d191bca83b0 /gdb/testsuite/gdb.chill | |
parent | e365a606edca6102edff827adfca1d6c487ebe61 (diff) | |
download | fsf-binutils-gdb-f1c9e4462a0f426fe83af8c2aa98b4980911e801.zip fsf-binutils-gdb-f1c9e4462a0f426fe83af8c2aa98b4980911e801.tar.gz fsf-binutils-gdb-f1c9e4462a0f426fe83af8c2aa98b4980911e801.tar.bz2 |
* gdb.base/a1-selftest.exp: Reset the timeout value to 30 seconds
after the inferior gdb has started.
'cuz lynx may take a couple minutes to start the inferior gdb...
* gdb.base/a2-run.exp: Handle gdb echoing more than one cr-lf
after each command.
* gdb.base/funcargs.exp: Likewise.
* gdb.base/gdbvars.exp: Likewise.
* gdb.base/interrupt.exp: Likewise.
* gdb.base/list.exp: Likewise.
* gdb.base/watchpoint.exp: Likewise.
* gdb.c++/demangle.exp: Likewise.
* gdb.c++/inherit.exp: Likewise.
* gdb.chill/chexp.exp: Likewise.
* gdb.fortran/exprs.exp: Likewise.
Just in case we can't get a version of expect that sets the tty modes
right on lynx to avoid this problem.
Diffstat (limited to 'gdb/testsuite/gdb.chill')
-rw-r--r-- | gdb/testsuite/gdb.chill/chexp.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.chill/chexp.exp b/gdb/testsuite/gdb.chill/chexp.exp index 0f957a7..19141b8 100644 --- a/gdb/testsuite/gdb.chill/chexp.exp +++ b/gdb/testsuite/gdb.chill/chexp.exp @@ -248,19 +248,19 @@ proc test_float_literals_accepted {} { proc test_convenience_variables {} { global prompt - gdb_test "set \$foo := 101" " := 101" \ + gdb_test "set \$foo := 101" " := 101\[\r\n\]+" \ "Set a new convenience variable" gdb_test "print \$foo" " = 101" \ "Print contents of new convenience variable" - gdb_test "set \$foo := 301" " := 301" \ + gdb_test "set \$foo := 301" " := 301\[\r\n\]+" \ "Set convenience variable to a new value" gdb_test "print \$foo" " = 301" \ "Print new contents of convenience variable" - gdb_test "set \$_ := 11" " := 11" \ + gdb_test "set \$_ := 11" " := 11\[\r\n\]+" \ "Set convenience variable \$_" gdb_test "print \$_" " = 11" \ |