diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-13 19:36:03 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-13 19:36:03 +0000 |
commit | 8b65bc297b026cdb4e1810109a8328aff0e87c22 (patch) | |
tree | 0d5a13c669a5768e58adaaf0486988fd4feeaf94 /contrib | |
parent | bfcdcf10601697275213037e1852695709eae6ae (diff) | |
download | gcc-8b65bc297b026cdb4e1810109a8328aff0e87c22.tar.gz |
* testsuite-management/validate_failures.py (ExpirationDate): Tidy
comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190354 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 5 | ||||
-rwxr-xr-x | contrib/testsuite-management/validate_failures.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index c41eb510f71..c7e3928a212 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,5 +1,10 @@ 2012-08-13 Diego Novillo <dnovillo@google.com> + * testsuite-management/validate_failures.py (ExpirationDate): Tidy + comment. + +2012-08-13 Diego Novillo <dnovillo@google.com> + * testsuite-management/validate_failures.py (ParseSummary): Fix comment. diff --git a/contrib/testsuite-management/validate_failures.py b/contrib/testsuite-management/validate_failures.py index c08748bd95d..f231e93f835 100755 --- a/contrib/testsuite-management/validate_failures.py +++ b/contrib/testsuite-management/validate_failures.py @@ -138,7 +138,7 @@ class TestResult(object): def ExpirationDate(self): # Return a datetime.date object with the expiration date for this - # test result expires. Return None, if no expiration # has been set. + # test result. Return None, if no expiration has been set. if re.search(r'expire=', self.attrs): expiration = re.search(r'expire=(\d\d\d\d)(\d\d)(\d\d)', self.attrs) if not expiration: |