* testsuite-management/validate_failures.py (ParseSummary): Fix
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Aug 2012 18:18:52 +0000 (18:18 +0000)
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Aug 2012 18:18:52 +0000 (18:18 +0000)
comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190352 138bc75d-0d04-0410-961f-82ee72b054a4

contrib/ChangeLog
contrib/testsuite-management/validate_failures.py

index 1967939..c41eb51 100644 (file)
@@ -1,5 +1,10 @@
 2012-08-13  Diego Novillo  <dnovillo@google.com>
 
+       * testsuite-management/validate_failures.py (ParseSummary): Fix
+       comment.
+
+2012-08-13  Diego Novillo  <dnovillo@google.com>
+
        * testsuite-management/validate_failures.py: Import datetime.
        (TestResult.ExpirationDate): New.
        (TestResult.HasExpired): New.
index 0ac9b15..c08748b 100755 (executable)
@@ -201,8 +201,9 @@ def ParseSummary(sum_fname):
     if IsInterestingResult(line):
       result = TestResult(line)
       if result.HasExpired():
-        # Tests that had an expiration set are not added to the
-        # set of expected results.
+        # Tests that have expired are not added to the set of expected
+        # results. If they are still present in the set of actual results,
+        # they will cause an error to be reported.
         print 'WARNING: Expected failure "%s" has expired.' % line.strip()
         continue
       result_set.add(result)