diff options
author | Jim Meyering <meyering@redhat.com> | 2007-12-12 10:25:38 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2007-12-12 10:25:38 +0100 |
commit | d11bfb04549d89a439aa5018baa83718e4b73e00 (patch) | |
tree | 6b76874a6cecceac3e488fb077f93f0fbcdddf12 /tests/mv | |
parent | 7407dc042ae4c0dc1599cd9ce1e73deb6f62da7f (diff) | |
download | coreutils-d11bfb04549d89a439aa5018baa83718e4b73e00.tar.xz |
* tests/mv/part-symlink: Redirect diff output to stderr.
Diffstat (limited to 'tests/mv')
-rwxr-xr-x | tests/mv/part-symlink | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mv/part-symlink b/tests/mv/part-symlink index 1b586668d..383179bfc 100755 --- a/tests/mv/part-symlink +++ b/tests/mv/part-symlink @@ -202,7 +202,7 @@ cat <<\EOF > $expected EOF -# Redirect to stderr, since stdout is already -compare $expected $actual || fail=1 +# Redirect to stderr, since stdout is already taken. +compare $expected $actual 1>&2 || fail=1 (exit $fail); exit $fail |