diff options
author | Diego Novillo <dnovillo@google.com> | 2012-08-13 15:36:03 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2012-08-13 15:36:03 -0400 |
commit | a327112f68b8e92ef04582002180fa5d8f715276 (patch) | |
tree | 0d5a13c669a5768e58adaaf0486988fd4feeaf94 /contrib | |
parent | 6baa72251b72cb42745d4fed90589374fe93c32f (diff) | |
download | gcc-a327112f68b8e92ef04582002180fa5d8f715276.zip gcc-a327112f68b8e92ef04582002180fa5d8f715276.tar.gz gcc-a327112f68b8e92ef04582002180fa5d8f715276.tar.bz2 |
validate_failures.py (ExpirationDate): Tidy comment.
* testsuite-management/validate_failures.py (ExpirationDate): Tidy
comment.
From-SVN: r190354
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 c41eb51..c7e3928 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 c08748b..f231e93 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: |