summaryrefslogtreecommitdiff
path: root/tests/tail-2/follow-stdin.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tail-2/follow-stdin.sh')
-rwxr-xr-xtests/tail-2/follow-stdin.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tail-2/follow-stdin.sh b/tests/tail-2/follow-stdin.sh
index 120cc3bbb..a2f180428 100755
--- a/tests/tail-2/follow-stdin.sh
+++ b/tests/tail-2/follow-stdin.sh
@@ -33,9 +33,10 @@ cleanup_() { kill $pid 2>/dev/null && wait $pid; }
fastpoll='-s.1 --max-unchanged-stats=1'
echo line > in || framework_failure_
+echo line > exp || framework_failure_
for mode in '' '---disable-inotify'; do
- echo line > exp || framework_failure_
+ > out || framework_failure_
tail $mode -f $fastpoll < in > out 2> err & pid=$!