diff options
author | Jim Meyering <jim@meyering.net> | 2005-11-02 20:44:59 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-11-02 20:44:59 +0000 |
commit | 812db65afab6015b180befc9e51df96a810c390b (patch) | |
tree | 2f7006ffb04cab03af66679b06360ac994104c93 /tests | |
parent | ad1faa0f288f3dca617837700f838f6df81c75c4 (diff) | |
download | coreutils-812db65afab6015b180befc9e51df96a810c390b.tar.xz |
Redirect stderr to /dev/null so the
M+N records in/out don't pollute `make check' output.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/dd/unblock-sync | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dd/unblock-sync b/tests/dd/unblock-sync index cdaff180d..52118487b 100755 --- a/tests/dd/unblock-sync +++ b/tests/dd/unblock-sync @@ -25,7 +25,7 @@ fi fail=0 -dd cbs=4 ibs=4 conv=unblock,sync < in > out || fail=1 +dd cbs=4 ibs=4 conv=unblock,sync < in 2>/dev/null > out || fail=1 cat <<\EOF > exp || fail=1 0001 0002 |