diff options
author | Jim Meyering <jim@meyering.net> | 2006-06-28 06:51:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-06-28 06:51:06 +0000 |
commit | 0e0f6e1050a569a92528d970e4dd5ed83f082ba0 (patch) | |
tree | 437fb570b6c6368375ddc48ddc69e1ee6e627df5 /tests/dd | |
parent | c4d2d39cf83ab8de4b6e383668e2835570692271 (diff) | |
download | coreutils-0e0f6e1050a569a92528d970e4dd5ed83f082ba0.tar.xz |
* tests/mv/i-link-no: Work around HP-UX /bin/sh tracing problem
(set -x when VERBOSE=yes) when stderr is redirected before stdout
causing shell tracing of the stdout redirection to be written to
the stderr file. Avoid problem and test failure on HP-UX by
redirecting stderr last.
* tests/dd/unblock-sync: Order shell file redirections for
stderr and stdout in the common style.
tests/acl: Likewise.
Diffstat (limited to 'tests/dd')
-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 52118487b..5050db675 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 2>/dev/null > out || fail=1 +dd cbs=4 ibs=4 conv=unblock,sync < in > out 2> /dev/null || fail=1 cat <<\EOF > exp || fail=1 0001 0002 |