summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-08-16 13:52:47 +0200
committerJim Meyering <meyering@redhat.com>2009-08-16 13:54:40 +0200
commitdc1618fbd82504eaa818dd3f77f2eb3fa367f051 (patch)
tree64ea1b6ee75a228feab04ff8e50cda331f251209 /tests
parente4dcb20e83260d3d0e30e35a81d850d07635dda2 (diff)
downloadcoreutils-dc1618fbd82504eaa818dd3f77f2eb3fa367f051.tar.xz
tests: tail-2/append-only: don't discard stderr
* tests/tail-2/append-only: Don't discard a diagnostic that may help explain why this test fails for some. Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/17621/focus=17641
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tail-2/append-only2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tail-2/append-only b/tests/tail-2/append-only
index 0395271ab..0b4a95958 100755
--- a/tests/tail-2/append-only
+++ b/tests/tail-2/append-only
@@ -39,7 +39,7 @@ fail=0
sleep 1 &
pid=$!
-tail --pid=$pid -f f > /dev/null 2>&1 || fail=1
+tail --pid=$pid -f f || fail=1
chattr -a f 2>/dev/null
Exit $fail