From: Jim Meyering Date: Mon, 7 Sep 2009 18:23:03 +0000 (+0200) Subject: tests: misc/cat-buf: clean up syntax X-Git-Tag: v7.6~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4a864da365fe70eb3a69fd4347f8f747a258efd;p=thirdparty%2Fcoreutils.git tests: misc/cat-buf: clean up syntax * tests/misc/cat-buf: Don't suppress dd's stderr. Remove useless quotes. --- diff --git a/tests/misc/cat-buf b/tests/misc/cat-buf index fb9ae881e1..d37f9f436e 100755 --- a/tests/misc/cat-buf +++ b/tests/misc/cat-buf @@ -30,11 +30,11 @@ fi # write separately. mkfifo fifo || framework_failure -echo '1' > exp +echo 1 > exp -dd count=1 if=fifo > out 2> err& -(echo '1'; sleep .2; echo '2') | cat -v > fifo -wait #for dd to complete +dd count=1 if=fifo > out & +(echo 1; sleep .2; echo 2) | cat -v > fifo +wait # for dd to complete compare out exp || fail=1