diff options
author | Jim Meyering <jim@meyering.net> | 2006-04-18 14:59:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-04-18 14:59:22 +0000 |
commit | 332498c3181aff91159c8e6de85e0c727108cdf7 (patch) | |
tree | 5d626375f90b9b634274c524a657eab5899179d2 /tests | |
parent | ae5252e393665a15b05c6ed54c0dd3e39ad6438e (diff) | |
download | coreutils-332498c3181aff91159c8e6de85e0c727108cdf7.tar.xz |
Add new programs, base64, sha224sum, sha256sum, sha384sum, sha512sum.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/tty-eof | 34 |
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); |