This removes the use of the stdin argument to runperl(), which will make the
transition to Test::PerlRun easier, as it doesn't provide 'stdin'. This was
the only test using 'stdin', and it can easily be changed not to need it.
{
my $stderr = runperl(
switches => ['-MIPC::Open3', '-w'],
- prog => 'open3(q _<&1_, my $out, undef, $ENV{PERLEXE}, q _-e0_)',
+ prog => 'open STDIN, q _Makefile_ or die $!; open3(q _<&1_, my $out, undef, $ENV{PERLEXE}, q _-e0_)',
stderr => 1,
- stdin => '',
);
{
local $::TODO = "Bogus warning in IPC::Open3::spawn_with_handles"