Remove input_via_stdin flag.

Do each test twice: get input via REDIR and PIPE.
This commit is contained in:
Jim Meyering
1997-01-30 03:26:27 +00:00
parent 6b1d2c4de1
commit 56557d787a
+1 -2
View File
@@ -3,8 +3,6 @@ package Test;
require 5.002;
use strict;
$Test::input_via_stdin = 1;
sub test_vector
{
my @tvec =
@@ -33,6 +31,7 @@ sub test_vector
{
my ($test_name, $flags, $in, $exp, $ret) = @$t;
push (@tv, [$test_name, $flags, $in, "$exp -\n", $ret]);
$Test::input_via{$test_name} = {REDIR => 0, PIPE => 0};
}
return @tv;