Print stuff to stdout if something changes.

llvm-svn: 9235
This commit is contained in:
Chris Lattner 2003-10-18 19:31:39 +00:00
parent a65c470b02
commit b06ba9f4b3

View File

@ -255,6 +255,10 @@ my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
$WarningsAdded = AddPreTag $WarningsAdded; $WarningsAdded = AddPreTag $WarningsAdded;
$WarningsRemoved = AddPreTag $WarningsRemoved; $WarningsRemoved = AddPreTag $WarningsRemoved;
# Output something to stdout if something has changed
print "ADDED WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
# #
# Get some statistics about CVS commits over the current day... # Get some statistics about CVS commits over the current day...
@ -397,6 +401,12 @@ if ($TestError) {
$TestsBroken = AddPreTag $TestsBroken; $TestsBroken = AddPreTag $TestsBroken;
} }
print "TESTS ADDED: \n$TestsAdded\n\n" if (length $TestsAdded);
print "TESTS REMOVED:\n$TestsRemoved\n\n" if (length $TestsRemoved);
print "TESTS FIXED: \n$TestsFixed\n\n" if (length $TestsFixed);
print "TESTS BROKEN: \n$TestsBroken\n\n" if (length $TestsBroken);
# If we built the tree successfully, runs of the Olden suite with # If we built the tree successfully, runs of the Olden suite with
# LARGE_PROBLEM_SIZE on so that we can get some "running" statistics. # LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
if ($BuildError eq "") { if ($BuildError eq "") {