From: Paul Eggert Date: Wed, 12 Apr 2006 07:07:32 +0000 (+0000) Subject: Solaris 8 sh doesn't understand "if !". Do not assume that 'sed' can X-Git-Tag: v6.0~516 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0dfc08bf3a0ded5f6ec655db0aa7d6f80c5abdee;p=thirdparty%2Fcoreutils.git Solaris 8 sh doesn't understand "if !". Do not assume that 'sed' can handle long, newline-free input. --- diff --git a/tests/du/long-from-unreadable b/tests/du/long-from-unreadable index 02877f46fe..2ae7ed1d90 100755 --- a/tests/du/long-from-unreadable +++ b/tests/du/long-from-unreadable @@ -19,7 +19,7 @@ fi . $srcdir/../envvar-check proc_file=/proc/self/fd -if ! test -d $proc_file; then +if test ! -d $proc_file; then cat <&2 $0: Skipping this test. It would fail, since your system lacks /proc support. @@ -36,7 +36,7 @@ framework_failure=0 mkdir -p $tmp || framework_failure=1 cd $tmp || framework_failure=1 -dir=`printf %200s ' '|sed 's/ /x/g'` +dir=`printf '%200s\n' ' '|tr ' ' x` # Construct a hierarchy containing a relative file with a name # longer than PATH_MAX.