git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@895
e59a4935-1847-0410-ae03-
e826735625c1
system("echo Copying to /dev/null to fill the disk cache");
foreach my $testcase (@testcases) {
- system ("cat " . $testcase . "/*.* > /dev/null");
+ system ("bash", "-c", "cat " . $testcase . "/*.* > /dev/null");
}
# Total running time
}
my $time = time;
# Now, run the sucker
- my $exitVal = system("$limits; gunzip -f --stdout $file | $timing $stp $stpArgs $logging");
+ my $exitVal = system("bash", "-c", "$limits; gunzip -f --stdout $file | $timing $stp $stpArgs $logging");
$time = time - $time;
# OK, let's see what happened
$testsTotal++;