mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
Print stuff to stdout if something changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a12c06a9fe
commit
9efd7f4f1b
@ -255,6 +255,10 @@ my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
|
||||
$WarningsAdded = AddPreTag $WarningsAdded;
|
||||
$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...
|
||||
@ -397,6 +401,12 @@ if ($TestError) {
|
||||
$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
|
||||
# LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
|
||||
if ($BuildError eq "") {
|
||||
|
Loading…
Reference in New Issue
Block a user