validate_failures.py (ParseSummary): Fix comment.
authorDiego Novillo <dnovillo@google.com>
Mon, 13 Aug 2012 18:18:52 +0000 (14:18 -0400)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Mon, 13 Aug 2012 18:18:52 +0000 (14:18 -0400)
* testsuite-management/validate_failures.py (ParseSummary): Fix
comment.

From-SVN: r190352

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

index 1967939b5e3d5b2b2c85fcd83345b509acf2217a..c41eb510f712deee84896d163bc1faec02d91098 100644 (file)
@@ -1,3 +1,8 @@
+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.
index 0ac9b15e5b671e412f679e2afe2b2aedad84e43a..c08748bd95df41fe80022e74785e66795a66c723 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)