summaryrefslogtreecommitdiff
path: root/tests/tail
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-01-24 23:32:43 +0000
committerJim Meyering <jim@meyering.net>1998-01-24 23:32:43 +0000
commit0966b97bd1e8b07b07eff59ef3faed07227dd51d (patch)
tree49ceeb8ff67ef7aadc03188445d76ee5a2b044d6 /tests/tail
parent8c3fb79a89fb5be58c601850fe87e43b34a343df (diff)
downloadcoreutils-0966b97bd1e8b07b07eff59ef3faed07227dd51d.tar.xz
(f-1): Add test for option-processing of `-f -n 1'.
Diffstat (limited to 'tests/tail')
-rwxr-xr-xtests/tail/Test.pm8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/tail/Test.pm b/tests/tail/Test.pm
index 79d361beb..37bc5201a 100755
--- a/tests/tail/Test.pm
+++ b/tests/tail/Test.pm
@@ -66,6 +66,9 @@ my @tv = (
['n-5', '-n -0', "y\n" x 5, '', 0],
['n-5a', '-n -1', "y\n" x 5, "y\n", 0],
['n-5b', '-n 0', "y\n" x 5, '', 0],
+
+# With textutils-1.22, this failed.
+['f-1', '-f -n 1', "a\nb\n", "b\n", 0],
);
sub test_vector
@@ -80,6 +83,11 @@ sub test_vector
{
$Test::input_via{$test_name} = {REDIR => 0, PIPE => 0};
}
+ elsif ($test_name eq 'f-1')
+ {
+ # Using redirection or a file would make this hang.
+ $Test::input_via{$test_name} = {PIPE => 0};
+ }
else
{
$Test::input_via{$test_name} = {REDIR => 0, FILE => 0, PIPE => 0}