Port to Solaris 8 perl, which does not support "use warnings;".
[coreutils.git] / tests / misc / sha512sum
blob55798fc7072bfa46064f971bddee8fd6330302fd
1 #!/bin/sh
2 # Test "sha512sum".
4 # Copyright (C) 2005, 2007 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 : ${PERL=perl}
20 : ${srcdir=.}
22 PROG=`echo $0|sed 's,.*/,,'`; export PROG
24 $PERL -e 'use warnings;' > /dev/null 2>&1 || {
25 echo 1>&2 "$0: configure didn't find a usable version of Perl," \
26 "so can't run this test"
27 exit 77
30 me=`echo $0|sed 's,.*/,,'`
31 exec $PERL -w -I$srcdir/.. -MCoreutils -M"CuTmpdir qw($me)" -- - <<\EOF
32 require 5.003;
33 use strict;
35 (my $program_name = $0) =~ s|.*/||;
37 # Turn off localisation of executable's ouput.
38 @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
40 my $sha_degenerate = "cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e";
42 my @Tests =
44 ['s1', {IN=> {f=> ''}},
45 {OUT=>"$sha_degenerate f\n"}],
46 ['s2', {IN=> {f=> 'a'}},
47 {OUT=>"1f40fc92da241694750979ee6cf582f2d5d7d28e18335de05abc54d0560e0f5302860c652bf08d560252aa5e74210546f369fbbbce8c12cfc7957b2652fe9a75 f\n"}],
48 ['s3', {IN=> {f=> 'abc'}},
49 {OUT=>"ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f f\n"}],
50 ['s4',
51 {IN=> {f=> 'abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu'}},
52 {OUT=>"8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909 f\n"}],
53 ['s8', {IN=> {f=> 'a' x 1000000}},
54 {OUT=>"e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973ebde0ff244877ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b f\n"}],
57 # Insert the `--text' argument for each test.
58 my $t;
59 foreach $t (@Tests)
61 splice @$t, 1, 0, '--text' unless @$t[1] =~ /--check/;
64 my $save_temps = $ENV{DEBUG};
65 my $verbose = $ENV{VERBOSE};
67 my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
68 my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
69 exit $fail;
70 EOF