summaryrefslogtreecommitdiff
path: root/tests/tail-2/append-only
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2009-09-04 21:41:30 +0100
committerPádraig Brady <P@draigBrady.com>2009-09-05 17:19:03 +0100
commit526a057602f7f312443ae4ec0653fec84bca9ff2 (patch)
tree16532c0aaac442092426ccebd166e02b5ef935d7 /tests/tail-2/append-only
parent70eadcb4e6990f0d1c9186ba6fa9f8e747cf3a22 (diff)
downloadcoreutils-526a057602f7f312443ae4ec0653fec84bca9ff2.tar.xz
tests: test old tail -f method even on systems with inotify
* src/tail.c (main): Add an undocumented ---disable-inotify option to allow disabling inotify. * tests/tail-2/pid: Run test in both normal and "disable_inotify" modes. * tests/tail-2/tail-n0f: Likewise. * tests/tail-2/wait: Likewise. * tests/tail-2/append-only: Likewise.
Diffstat (limited to 'tests/tail-2/append-only')
-rwxr-xr-xtests/tail-2/append-only9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/tail-2/append-only b/tests/tail-2/append-only
index 0b4a95958..2d38d4f0f 100755
--- a/tests/tail-2/append-only
+++ b/tests/tail-2/append-only
@@ -37,9 +37,12 @@ fi
fail=0
-sleep 1 &
-pid=$!
-tail --pid=$pid -f f || fail=1
+for inotify in ---disable-inotify ''; do
+ sleep 1 &
+ pid=$!
+ tail --pid=$pid -f $inotify f || fail=1
+done
+
chattr -a f 2>/dev/null
Exit $fail