[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Chris Lattner lattner at cs.uiuc.edu
Sat Oct 18 14:32:01 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.35 -> 1.36

---
Log message:

Print stuff to stdout if something changes.


---
Diffs of the changes:  (+10 -0)

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.35 llvm/utils/NightlyTest.pl:1.36
--- llvm/utils/NightlyTest.pl:1.35	Mon Oct 13 20:22:08 2003
+++ llvm/utils/NightlyTest.pl	Sat Oct 18 14:31:39 2003
@@ -255,6 +255,10 @@
 $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...
@@ -396,6 +400,12 @@
   $TestsFixed   = AddPreTag $TestsFixed;
   $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.





More information about the llvm-commits mailing list