I'm having some trouble with some new tests I'm adding to perl;
perlld is outputing stuff to STDOUT, which makes TEST unhappy
(though harness doesn't mind).
Would the following change be okay with you:
--- perl/cygwin/perlld.in 2003-11-24 14:44:26.000000000 -0800
+++ perlpatch/cygwin/perlld.in 2005-05-11 23:28:20.203129600 -0700
@@ -79,7 +79,7 @@
#---------------------------------------------------------------------------
sub shellexec{
my $command =shift;
- print $command;
+ print STDERR $command;
print DEBUGFILE $command if $DEBUG;
system($command) == 0
or die "perlld: *** system() failed to execute\n$command\n";
Thread Next