* default.exp: For stty_init set to \^h as on some /bin/sh, ^ is
authorEzra Peisach <epeisach@mit.edu>
Sun, 5 May 1996 13:45:16 +0000 (13:45 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sun, 5 May 1996 13:45:16 +0000 (13:45 +0000)
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

src/tests/dejagnu/config/ChangeLog
src/tests/dejagnu/config/default.exp

index 299abb52c4b0cc28916bb9dc696169eeca67d126..83a1ed655b66d5c77fa45e27af23ab7509322171 100644 (file)
@@ -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>
index db3cdaa52bdd2bdc50e403ee480f6438bdc0c585..ab6e7ef95cdfea634ba4063193ababf3d2eee0fe 100644 (file)
@@ -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}