mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 16:36:40 +00:00
Print stuff to stdout if something changes.
llvm-svn: 9235
This commit is contained in:
parent
a65c470b02
commit
b06ba9f4b3
@ -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 "") {
|
||||||
|
Loading…
Reference in New Issue
Block a user