diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-12-10 03:50:52 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-12-10 03:50:52 +0000 |
commit | 384b93b1beb05f0efedc0d1e229d4f194b18e5d8 (patch) | |
tree | e6fb7b041abc60a33cd1edd9e7d8c8376c9044df /gas | |
parent | a55774a124b999d5736d29799601a0c476f98bc2 (diff) | |
download | gdb-384b93b1beb05f0efedc0d1e229d4f194b18e5d8.zip gdb-384b93b1beb05f0efedc0d1e229d4f194b18e5d8.tar.gz gdb-384b93b1beb05f0efedc0d1e229d4f194b18e5d8.tar.bz2 |
* gas/all/gas.exp (comment.s test): Make the "\r" optional, since it depends on
tty modes.
* lib/gas-defs.exp (gas_start): Try using -nottycopy instead of -nottyinit.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/lib/gas-defs.exp | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 97ed53e..f9e48ff 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,5 +1,11 @@ Fri Dec 9 19:54:04 1994 Ken Raeburn <raeburn@cujo.cygnus.com> + * gas/all/gas.exp (comment.s test): Make the "\r" optional, since + it depends on tty modes. + + * lib/gas-defs.exp (gas_start): Try using -nottycopy instead of + -nottyinit. + * gas/arm/gas.exp: The arm6 test should report errors, for now. Thu Dec 8 20:19:09 1994 Ken Raeburn <raeburn@cujo.cygnus.com> diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp index 73e8cf2..c33667e 100644 --- a/gas/testsuite/lib/gas-defs.exp +++ b/gas/testsuite/lib/gas-defs.exp @@ -56,7 +56,7 @@ proc gas_start { prog as_opts } { verbose "Starting $AS $ASFLAGS $as_opts $prog" 2 catch { - spawn -noecho -nottyinit $srcdir/lib/run $AS $ASFLAGS $as_opts $srcdir/$subdir/$prog + spawn -noecho -nottycopy $srcdir/lib/run $AS $ASFLAGS $as_opts $srcdir/$subdir/$prog } foo if ![regexp {^[0-9]+} $foo] then { perror "Can't run $subdir/$prog: $foo" |