Commit 6baa7225 by Diego Novillo Committed by Diego Novillo

validate_failures.py (ParseSummary): Fix comment.

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

From-SVN: r190352
parent c577382e
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.
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment