| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 """A class for updating layout test expectations when updating w3c tests. | 5 """A class for updating layout test expectations when updating w3c tests. |
| 6 | 6 |
| 7 Specifically, this class fetches results from try bots for the current CL, and: | 7 Specifically, this class fetches results from try bots for the current CL, and: |
| 8 1. Downloads new baseline files for any tests that can be rebaselined. | 8 1. Downloads new baseline files for any tests that can be rebaselined. |
| 9 2. Updates the generic TestExpectations file for any other failing tests. | 9 2. Updates the generic TestExpectations file for any other failing tests. |
| 10 | 10 |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 tests_to_rebaseline, tests_results = self.get_tests_to_rebaseline(modifi
ed_files, tests_results) | 297 tests_to_rebaseline, tests_results = self.get_tests_to_rebaseline(modifi
ed_files, tests_results) |
| 298 if tests_to_rebaseline: | 298 if tests_to_rebaseline: |
| 299 webkit_patch = self.host.filesystem.join( | 299 webkit_patch = self.host.filesystem.join( |
| 300 self.finder.chromium_base(), self.finder.webkit_base(), self.fin
der.path_to_script('webkit-patch')) | 300 self.finder.chromium_base(), self.finder.webkit_base(), self.fin
der.path_to_script('webkit-patch')) |
| 301 self.host.executive.run_command([ | 301 self.host.executive.run_command([ |
| 302 'python', | 302 'python', |
| 303 webkit_patch, | 303 webkit_patch, |
| 304 'rebaseline-cl', | 304 'rebaseline-cl', |
| 305 '--verbose', | 305 '--verbose', |
| 306 '--no-trigger-jobs', | 306 '--no-trigger-jobs', |
| 307 '--only-changed-tests', |
| 307 ] + tests_to_rebaseline) | 308 ] + tests_to_rebaseline) |
| 308 return tests_results | 309 return tests_results |
| 309 | 310 |
| 310 def get_tests_to_rebaseline(self, modified_files, tests_results): | 311 def get_tests_to_rebaseline(self, modified_files, tests_results): |
| 311 """Returns a list of tests to download new baselines for. | 312 """Returns a list of tests to download new baselines for. |
| 312 | 313 |
| 313 Creates a list of tests to rebaseline depending on the tests' platform- | 314 Creates a list of tests to rebaseline depending on the tests' platform- |
| 314 specific results. In general, this will be non-ref tests that failed | 315 specific results. In general, this will be non-ref tests that failed |
| 315 due to a baseline mismatch (rather than crash or timeout). | 316 due to a baseline mismatch (rather than crash or timeout). |
| 316 | 317 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 342 | 343 |
| 343 Args: | 344 Args: |
| 344 test_path: A file path relative to the layout tests directory. | 345 test_path: A file path relative to the layout tests directory. |
| 345 This might correspond to a deleted file or a non-test. | 346 This might correspond to a deleted file or a non-test. |
| 346 """ | 347 """ |
| 347 absolute_path = self.host.filesystem.join(self.finder.layout_tests_dir()
, test_path) | 348 absolute_path = self.host.filesystem.join(self.finder.layout_tests_dir()
, test_path) |
| 348 test_parser = TestParser(absolute_path, self.host) | 349 test_parser = TestParser(absolute_path, self.host) |
| 349 if not test_parser.test_doc: | 350 if not test_parser.test_doc: |
| 350 return False | 351 return False |
| 351 return test_parser.is_jstest() | 352 return test_parser.is_jstest() |
| OLD | NEW |