validate_failures.py (ParseSummary): Fix comment.

* testsuite-management/validate_failures.py (ParseSummary): Fix
	comment.

From-SVN: r190352
This commit is contained in:
Diego Novillo 2012-08-13 14:18:52 -04:00 committed by Diego Novillo
parent c577382e7b
commit 6baa72251b
2 changed files with 8 additions and 2 deletions

View 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.

View File

@ -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)