1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Try to fix too long command line.

On Windows...
This commit is contained in:
Shlomi Fish 2017-12-10 16:41:02 +02:00
parent fffa090583
commit 11c49ce150

View file

@ -43,9 +43,25 @@ sub run_tests
print "Running [@cmd]\n";
}
# Workaround for Windows spawning-SNAFU.
my $exit_code = system(@cmd);
exit( $exit_success ? 0 : $exit_code ? (-1) : 0 );
if ($use_prove)
{
# Workaround for Windows spawning-SNAFU.
my $exit_code = system(@cmd);
exit( $exit_success ? 0 : $exit_code ? (-1) : 0 );
}
else
{
require Test::Run::CmdLine::Prove;
my $p =
Test::Run::CmdLine::Prove->create(
{
'args' => [@$tests],
'env_switches' => $ENV{'PROVE_SWITCHES'},
}
);
exit(! $p->run());
}
}
my $tests_glob = "*.{t.exe,py,t}";