perl test runner now properly catches STDERR

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8571 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Jason Stewart 2006-01-27 10:36:57 +00:00
commit f663ab6310

View file

@ -7,7 +7,7 @@ use strict;
my $command = shift @ARGV;
my $output = `perl $command`;
my $output = `perl $command 2>&1`;
die "SWIG Perl test failed: \n\n$output\n"
if $?;