| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| index 3127b459da5ffcadd350709a2f4e94056b0d5c7e..d7d8895057f70f5f0216777444c256c946a1df99 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| @@ -354,7 +354,9 @@ class TestImporter(object):
|
| return False
|
|
|
| # If the CQ passes, then the issue will be closed.
|
| - if not self.git_cl.is_closed():
|
| + status = self.git_cl.run(['status' '--field', 'status']).strip()
|
| + _log.info('CL status: "%s"', status)
|
| + if status not in ('lgtm', 'closed'):
|
| _log.error('CQ appears to have failed; aborting.')
|
| self.git_cl.run(['set-close'])
|
| return False
|
|
|