diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 2 | ||||
-rwxr-xr-x | tests/misc/tty-eof | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index ca190517b..a4370a6d1 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -87,6 +87,7 @@ TESTS = \ rm/ext3-perf \ rm/cycle \ cp/link-heap \ + misc/tty-eof \ tail-2/inotify-hash-abuse \ tail-2/inotify-hash-abuse2 \ tail-2/F-vs-missing \ @@ -303,7 +304,6 @@ TESTS = \ misc/truncate-parameters \ misc/truncate-relative \ misc/tsort \ - misc/tty-eof \ misc/unexpand \ misc/uniq \ misc/uniq-perf \ diff --git a/tests/misc/tty-eof b/tests/misc/tty-eof index 9e866139c..e9eed2eac 100755 --- a/tests/misc/tty-eof +++ b/tests/misc/tty-eof @@ -75,7 +75,7 @@ $@ $exp->expect (0, '-re', "^a b\\r?\$"); my $found = $exp->expect (1, '-re', "^.+\$"); $found and warn "F: $found: " . $exp->exp_match () . "\n"; - $exp->expect(1, 'eof'); + $exp->expect(10, 'eof'); # Expect no output from cut, since we gave it no input. defined $found || $cmd =~ /^cut/ or (warn "$ME: $cmd didn't produce expected output\n"), |