summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/NightlyTest.pl10
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index 04a39ea1de..6e4a53ed17 100755
--- a/utils/NightlyTest.pl
+++ b/utils/NightlyTest.pl
@@ -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 "") {