diff options
author | Ezra Peisach <epeisach@mit.edu> | 1996-05-05 13:45:16 +0000 |
---|---|---|
committer | Ezra Peisach <epeisach@mit.edu> | 1996-05-05 13:45:16 +0000 |
commit | ca3d618315e2731357d64a2f536fa2c66a0e88dd (patch) | |
tree | a046d9d73f3ebd8585a1f515037dce09bf639e01 /src/tests | |
parent | 8315bbae2d56fa829525fed5717861e4ae283a78 (diff) | |
download | krb5-ca3d618315e2731357d64a2f536fa2c66a0e88dd.tar.gz krb5-ca3d618315e2731357d64a2f536fa2c66a0e88dd.tar.xz krb5-ca3d618315e2731357d64a2f536fa2c66a0e88dd.zip |
* default.exp: For stty_init set to \^h as on some /bin/sh, ^ is
treated as a pipe.
I had never heard of this until under DU 3.2 the tests started failing
until I read the sh man page. Apparently ^ is for some very old
compatibility.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7900 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/dejagnu/config/ChangeLog | 5 | ||||
-rw-r--r-- | src/tests/dejagnu/config/default.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/tests/dejagnu/config/ChangeLog b/src/tests/dejagnu/config/ChangeLog index 299abb52c..83a1ed655 100644 --- a/src/tests/dejagnu/config/ChangeLog +++ b/src/tests/dejagnu/config/ChangeLog @@ -1,3 +1,8 @@ +Sat May 4 11:56:17 1996 Ezra Peisach (epeisach@kangaroo.mit.edu) + + * default.exp: For stty_init set to \^h as on some /bin/sh, ^ is + treated as a pipe. + Fri May 3 20:48:16 1996 Ken Raeburn <raeburn@cygnus.com> Tue Apr 2 22:22:47 1996 Chris Provenzano <proven@cygnus.com> diff --git a/src/tests/dejagnu/config/default.exp b/src/tests/dejagnu/config/default.exp index db3cdaa52..ab6e7ef95 100644 --- a/src/tests/dejagnu/config/default.exp +++ b/src/tests/dejagnu/config/default.exp @@ -12,7 +12,7 @@ # realm name, defaulting to KRBTEST.COM. set timeout 100 -set stty_init {erase ^h kill ^u} +set stty_init {erase \^h kill \^u} # We do everything in a temporary directory. if ![file isdirectory tmpdir] {catch "exec mkdir tmpdir" status} |