Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2004-10-22 01:07:42 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-10-22 01:07:42 +0400
commitcc3fa1be63ecff5378a8a5a898d6a1d3005520b1 (patch)
treec7691633f3cd3c16d0e4ba049db5ef65a8e75d55 /mcs/errors/do-tests.pl
parent1f9fea5529fa36f3ae2ecd32e4adb271884561c7 (diff)
* do-tests.pl: Make robust to being invoked in parallel for
multiple profiles. * Makefile: Clean any generated files. svn path=/trunk/mcs/; revision=35219
Diffstat (limited to 'mcs/errors/do-tests.pl')
-rwxr-xr-xmcs/errors/do-tests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/errors/do-tests.pl b/mcs/errors/do-tests.pl
index 93a2fc68ca3..6d220322022 100755
--- a/mcs/errors/do-tests.pl
+++ b/mcs/errors/do-tests.pl
@@ -98,7 +98,7 @@ foreach (glob ($files)) {
$total++;
my $testlogfile="$profile-$_.log";
- system "$compile --expect-error $error_number $options $_ > $testlogfile 2>&1";
+ system "$compile --expect-error $error_number $options -out:$profile-$_.junk $_ > $testlogfile 2>&1";
exit 1 if $? & 127;