From 332498c3181aff91159c8e6de85e0c727108cdf7 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 18 Apr 2006 14:59:22 +0000 Subject: [PATCH] Add new programs, base64, sha224sum, sha256sum, sha384sum, sha512sum. --- tests/misc/tty-eof | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/tests/misc/tty-eof b/tests/misc/tty-eof index da2e50d1f1..39e9e03997 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); -- 2.47.3