summaryrefslogtreecommitdiffstats
path: root/fips
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-03-08 13:29:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-03-08 13:29:46 +0000
commitc34a652e1ef9425b2c350aedec8f8ef94ec334a9 (patch)
tree3e692137632096cceafa0ae18ed9283d74c23c7c /fips
parent12b77cbec33a958f000f0eb424d3bd7d5be8f554 (diff)
Remove redirection from fipsalgtest.pl script.
Diffstat (limited to 'fips')
-rw-r--r--fips/fipsalgtest.pl4
1 files changed, 2 insertions, 2 deletions
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