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-09-03 16:07:36 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-09-03 16:07:36 +0400
commit3112e518036aa81c8b08432bccc9fe0363bf7081 (patch)
tree1eedcd852aee033d7975bd95ff99186f1f89e67f /mcs/errors/do-tests.pl
parenta0e7e8ab48624420a2c1c1e034ad98bc2fc134ea (diff)
Attach $profile to log file name to make clear
which profile caused the error. svn path=/trunk/mcs/; revision=33271
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 f1416ec640f..71d1936572b 100755
--- a/mcs/errors/do-tests.pl
+++ b/mcs/errors/do-tests.pl
@@ -92,7 +92,7 @@ foreach (glob ($files)) {
next if exists $ignore_map {$_};
- my $testlogfile="$_.log";
+ my $testlogfile="$profile-$_.log";
system "$compile --expect-error $error_number $options $_ > $testlogfile 2>&1";
exit 1 if $? & 127;