| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Pull latest revisions of a W3C test repo and make a local commit.""" | 5 """Pull latest revisions of a W3C test repo and make a local commit.""" |
| 6 | 6 |
| 7 import argparse | 7 import argparse |
| 8 import time | 8 import time |
| 9 | 9 |
| 10 from webkitpy.common.webkit_finder import WebKitFinder | 10 from webkitpy.common.webkit_finder import WebKitFinder |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 self.print_('## Done: changes imported and committed.') | 190 self.print_('## Done: changes imported and committed.') |
| 191 else: | 191 else: |
| 192 self.print_('## Done: no changes to import.') | 192 self.print_('## Done: no changes to import.') |
| 193 | 193 |
| 194 def is_manual_test(self, fs, dirname, basename): | 194 def is_manual_test(self, fs, dirname, basename): |
| 195 """Returns True if the file should be removed because it's a manual test
. | 195 """Returns True if the file should be removed because it's a manual test
. |
| 196 | 196 |
| 197 Tests with "-manual" in the name are not considered manual tests | 197 Tests with "-manual" in the name are not considered manual tests |
| 198 if there is a corresponding JS automation file. | 198 if there is a corresponding JS automation file. |
| 199 """ | 199 """ |
| 200 basename_without_extension, _ = basename.rsplit('.', 1) | 200 basename_without_extension, _ = self.fs.splitext(basename) |
| 201 if not basename_without_extension.endswith('-manual'): | 201 if not basename_without_extension.endswith('-manual'): |
| 202 return False | 202 return False |
| 203 dir_from_wpt = fs.relpath(dirname, self.path_from_webkit_base('LayoutTes
ts', 'imported', 'wpt')) | 203 dir_from_wpt = fs.relpath(dirname, self.path_from_webkit_base('LayoutTes
ts', 'imported', 'wpt')) |
| 204 automation_dir = self.path_from_webkit_base('LayoutTests', 'imported', '
wpt_automation', dir_from_wpt) | 204 automation_dir = self.path_from_webkit_base('LayoutTests', 'imported', '
wpt_automation', dir_from_wpt) |
| 205 if fs.isfile(fs.join(automation_dir, '%s-automation.js' % basename_witho
ut_extension)): | 205 if fs.isfile(fs.join(automation_dir, '%s-automation.js' % basename_witho
ut_extension)): |
| 206 return False | 206 return False |
| 207 return True | 207 return True |
| 208 | 208 |
| 209 def is_baseline(self, fs, dirname, basename): # Callback for FileSystem.fil
es_under; not all arguments used - pylint: disable=unused-argument | 209 def is_baseline(self, fs, dirname, basename): # Callback for FileSystem.fil
es_under; not all arguments used - pylint: disable=unused-argument |
| 210 return basename.endswith('-expected.txt') | 210 return basename.endswith('-expected.txt') |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 sets['Failures'] -= sets['Successes'] | 284 sets['Failures'] -= sets['Successes'] |
| 285 sets['Started'] -= sets['Successes'] | 285 sets['Started'] -= sets['Successes'] |
| 286 sets['Started'] -= sets['Failures'] | 286 sets['Started'] -= sets['Failures'] |
| 287 return sets | 287 return sets |
| 288 | 288 |
| 289 def check_run(self, command): | 289 def check_run(self, command): |
| 290 return_code, out = self.run(command) | 290 return_code, out = self.run(command) |
| 291 if return_code: | 291 if return_code: |
| 292 raise Exception('%s failed with exit code %d.' % ' '.join(command),
return_code) | 292 raise Exception('%s failed with exit code %d.' % ' '.join(command),
return_code) |
| 293 return out | 293 return out |
| OLD | NEW |