diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-13 18:18:52 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-13 18:18:52 +0000 |
commit | bfcdcf10601697275213037e1852695709eae6ae (patch) | |
tree | b7d78bb1b3c074148a219b53adc2eb3c43b83be7 /contrib/testsuite-management/validate_failures.py | |
parent | 83ab857b2076aab82ada9674a50141bdd4d9ad2e (diff) | |
download | gcc-bfcdcf10601697275213037e1852695709eae6ae.tar.gz |
* testsuite-management/validate_failures.py (ParseSummary): Fix
comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190352 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/testsuite-management/validate_failures.py')
-rwxr-xr-x | contrib/testsuite-management/validate_failures.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/testsuite-management/validate_failures.py b/contrib/testsuite-management/validate_failures.py index 0ac9b15e5b6..c08748bd95d 100755 --- a/contrib/testsuite-management/validate_failures.py +++ b/contrib/testsuite-management/validate_failures.py @@ -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) |