From: Dr. Stephen Henson Date: Tue, 8 Mar 2011 13:29:46 +0000 (+0000) Subject: Remove redirection from fipsalgtest.pl script. X-Git-Tag: OpenSSL-fips-2_0-rc1~687 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c34a652e1ef9425b2c350aedec8f8ef94ec334a9;p=oweals%2Fopenssl.git Remove redirection from fipsalgtest.pl script. --- diff --git a/fips/fipsalgtest.pl b/fips/fipsalgtest.pl index 0b6ac0f3fa..af778a47a9 100644 --- a/fips/fipsalgtest.pl +++ b/fips/fipsalgtest.pl @@ -760,7 +760,7 @@ sub run_tests { $cmd .= "\"$req\" \"$out\""; } else { - $cmd .= "<\"$req\" >\"$out\""; + $cmd .= "\"$req\" \"$out\""; } print STDERR "DEBUG: running test $tname\n" if ( $debug && !$verify ); system($cmd); @@ -776,7 +776,7 @@ sub run_tests { $vout =~ s/\.rsp$/.ver/; $tcmd = $verify_special{$tname}; $cmd = "$cmd_prefix$tprefix$tcmd "; - $cmd .= "<\"$out\" >\"$vout\""; + $cmd .= "\"$out\" \"$vout\""; system($cmd); if ( $? != 0 ) { print STDERR