[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.cgi
Patrick Jenkins
pjenkins at apple.com
Thu Aug 10 15:30:43 PDT 2006
Changes in directory nightlytest-serverside:
NightlyTestAccept.cgi updated: 1.42 -> 1.43
---
Log message:
When i added significant changes to the email i made them print to the console rather than adding them to the email
---
Diffs of the changes: (+3 -3)
NightlyTestAccept.cgi | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: nightlytest-serverside/NightlyTestAccept.cgi
diff -u nightlytest-serverside/NightlyTestAccept.cgi:1.42 nightlytest-serverside/NightlyTestAccept.cgi:1.43
--- nightlytest-serverside/NightlyTestAccept.cgi:1.42 Thu Aug 10 13:26:13 2006
+++ nightlytest-serverside/NightlyTestAccept.cgi Thu Aug 10 17:30:29 2006
@@ -789,11 +789,11 @@
}
$email .= "\nRemoved Tests: $removed_tests\n";
- print "\nSignificant changes in test results:\n";
+ $email .= "\nSignificant changes in test results:\n";
foreach my $meas(keys(%output_big_changes)){
- print "$meas:\n";
+ $email.= "$meas:\n";
foreach my $x(@{ $output_big_changes{$meas} } ){
- print "--- $x";
+ $email.= "--- $x";
}
}
}
More information about the llvm-commits
mailing list