From 89f0eb153fe21ea2c82125e25bfc828949f1b6ed Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 23 Aug 2000 07:49:05 +0000 Subject: [PATCH] redir dd's stderr --- tests/dd/not-rewound | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dd/not-rewound b/tests/dd/not-rewound index 0a500427d..3c03ddb9f 100755 --- a/tests/dd/not-rewound +++ b/tests/dd/not-rewound @@ -23,7 +23,7 @@ fi fail=0 echo abc > in -(dd skip=1 count=1 bs=1; dd skip=1 bs=1) < in > out || fail=1 +(dd skip=1 count=1 bs=1; dd skip=1 bs=1) < in > out 2> /dev/null || fail=1 case `cat out` in b) ;; *) fail=1 ;;