1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-01 10:33:30 +02:00

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
This commit is contained in:
Jim Meyering
2009-08-16 13:52:47 +02:00
parent e4dcb20e83
commit dc1618fbd8

View File

@@ -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