Changeset 243774 in webkit
- Timestamp:
- Apr 2, 2019, 5:04:29 PM (7 years ago)
- Location:
- branches/safari-607-branch/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/controllers/manager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-607-branch/Tools/ChangeLog
r243773 r243774 1 2019-04-02 Kocsen Chung <kocsen_chung@apple.com> 2 3 Cherry-pick r240153. rdar://problem/49539128 4 5 webkitpy: Implement device type specific expected results (Follow-up fix) 6 https://bugs.webkit.org/show_bug.cgi?id=192162 7 <rdar://problem/46345449> 8 9 Unreviewed infrastructure fix. 10 11 * Scripts/webkitpy/layout_tests/controllers/manager.py: 12 (Manager.run): Don't boot a device if no tests are available to run on it. 13 14 15 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240153 268f45cc-cd09-0410-ab3c-d52691b4dbfc 16 17 2019-01-18 Jonathan Bedard <jbedard@apple.com> 18 19 webkitpy: Implement device type specific expected results (Follow-up fix) 20 https://bugs.webkit.org/show_bug.cgi?id=192162 21 <rdar://problem/46345449> 22 23 Unreviewed infrastructure fix. 24 25 * Scripts/webkitpy/layout_tests/controllers/manager.py: 26 (Manager.run): Don't boot a device if no tests are available to run on it. 27 1 28 2019-04-02 Kocsen Chung <kocsen_chung@apple.com> 2 29 -
branches/safari-607-branch/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
r243772 r243774 253 253 _log.info('Running {}{}'.format(pluralize(len(tests_to_run_by_device[device_type]), 'test'), ' for {}'.format(str(device_type)) if device_type else '')) 254 254 _log.info('') 255 if not tests_to_run_by_device[device_type]: 256 continue 255 257 if not self._set_up_run(tests_to_run_by_device[device_type], device_type=device_type): 256 258 return test_run_results.RunDetails(exit_code=-1)
Note:
See TracChangeset
for help on using the changeset viewer.