[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.cgi

Patrick Jenkins pjenkins at apple.com
Wed Jul 26 10:48:58 PDT 2006



Changes in directory nightlytest-serverside:

NightlyTestAccept.cgi updated: 1.31 -> 1.32
---
Log message:

Added some comments to hopefully explain some ambiguous code


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

 NightlyTestAccept.cgi |    9 +++++++++
 1 files changed, 9 insertions(+)


Index: nightlytest-serverside/NightlyTestAccept.cgi
diff -u nightlytest-serverside/NightlyTestAccept.cgi:1.31 nightlytest-serverside/NightlyTestAccept.cgi:1.32
--- nightlytest-serverside/NightlyTestAccept.cgi:1.31	Wed Jul 26 12:45:48 2006
+++ nightlytest-serverside/NightlyTestAccept.cgi	Wed Jul 26 12:48:44 2006
@@ -552,6 +552,10 @@
 ################################################################################
 #
 # Creating test lists
+# 		All of these if-else statements are to ensure that if the previous
+#			night's test had a build failure and reported all tests as not passing,
+#			all failing, etc, etc then we dont report all the tests as newly passing
+#     or their equivalent.
 #
 ################################################################################
 my $d = $dbh->prepare("select * from night where machine = $machine_id ORDER BY added DESC");
@@ -579,6 +583,11 @@
 }
 else{ $removed_tests=""; }
 
+################################################################################
+#
+# Submitting information to database
+#
+################################################################################
 #$db_date = $date." ".$time;
 $db_date = `date "+20%y-%m-%d %H:%M:%S"`;
 chomp($db_date);






More information about the llvm-commits mailing list