summaryrefslogtreecommitdiff
path: root/tests/misc/tty-eof
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-04-18 14:59:22 +0000
committerJim Meyering <jim@meyering.net>2006-04-18 14:59:22 +0000
commit332498c3181aff91159c8e6de85e0c727108cdf7 (patch)
tree5d626375f90b9b634274c524a657eab5899179d2 /tests/misc/tty-eof
parentae5252e393665a15b05c6ed54c0dd3e39ad6438e (diff)
downloadcoreutils-332498c3181aff91159c8e6de85e0c727108cdf7.tar.xz
Add new programs, base64, sha224sum, sha256sum, sha384sum, sha512sum.
Diffstat (limited to 'tests/misc/tty-eof')
-rwxr-xr-xtests/misc/tty-eof34
1 files changed, 31 insertions, 3 deletions
diff --git a/tests/misc/tty-eof b/tests/misc/tty-eof
index da2e50d1f..39e9e0399 100755
--- a/tests/misc/tty-eof
+++ b/tests/misc/tty-eof
@@ -28,9 +28,37 @@ $@ and (warn "$ME: this script requires Perl's Expect package >=1.11\n"),
{
my $fail = 0;
- foreach my $cmd (qw( cat cksum dd expand fmt fold head md5sum nl od
- paste pr ptx sha1sum sort sum tac tee tail tsort
- unexpand uniq wc ), 'cut -f2')
+ my @stdin_reading_commands = qw(
+ base64
+ cat
+ cksum
+ dd
+ expand
+ fmt
+ fold
+ head
+ md5sum
+ nl
+ od
+ paste
+ pr
+ ptx
+ sha1sum
+ sha224sum
+ sha256sum
+ sha384sum
+ sha512sum
+ sort
+ sum
+ tac
+ tail
+ tee
+ tsort
+ unexpand
+ uniq
+ wc
+ );
+ foreach my $cmd ((@stdin_reading_commands), 'cut -f2')
{
my $exp = new Expect;
$exp->log_user(0);