Title: [243774] branches/safari-607-branch/Tools
- Revision
- 243774
- Author
- [email protected]
- Date
- 2019-04-02 17:04:29 -0700 (Tue, 02 Apr 2019)
Log Message
Cherry-pick r240153. rdar://problem/49539128
webkitpy: Implement device type specific expected results (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=192162
<rdar://problem/46345449>
Unreviewed infrastructure fix.
* Scripts/webkitpy/layout_tests/controllers/manager.py:
(Manager.run): Don't boot a device if no tests are available to run on it.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240153 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Modified Paths
Diff
Modified: branches/safari-607-branch/Tools/ChangeLog (243773 => 243774)
--- branches/safari-607-branch/Tools/ChangeLog 2019-04-03 00:04:26 UTC (rev 243773)
+++ branches/safari-607-branch/Tools/ChangeLog 2019-04-03 00:04:29 UTC (rev 243774)
@@ -1,5 +1,32 @@
2019-04-02 Kocsen Chung <[email protected]>
+ Cherry-pick r240153. rdar://problem/49539128
+
+ webkitpy: Implement device type specific expected results (Follow-up fix)
+ https://bugs.webkit.org/show_bug.cgi?id=192162
+ <rdar://problem/46345449>
+
+ Unreviewed infrastructure fix.
+
+ * Scripts/webkitpy/layout_tests/controllers/manager.py:
+ (Manager.run): Don't boot a device if no tests are available to run on it.
+
+
+ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240153 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+ 2019-01-18 Jonathan Bedard <[email protected]>
+
+ webkitpy: Implement device type specific expected results (Follow-up fix)
+ https://bugs.webkit.org/show_bug.cgi?id=192162
+ <rdar://problem/46345449>
+
+ Unreviewed infrastructure fix.
+
+ * Scripts/webkitpy/layout_tests/controllers/manager.py:
+ (Manager.run): Don't boot a device if no tests are available to run on it.
+
+2019-04-02 Kocsen Chung <[email protected]>
+
Cherry-pick r240151. rdar://problem/49539128
webkitpy: Implement device type specific expected results (Follow-up fix)
Modified: branches/safari-607-branch/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py (243773 => 243774)
--- branches/safari-607-branch/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py 2019-04-03 00:04:26 UTC (rev 243773)
+++ branches/safari-607-branch/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py 2019-04-03 00:04:29 UTC (rev 243774)
@@ -252,6 +252,8 @@
_log.info('Running {}{}'.format(pluralize(len(tests_to_run_by_device[device_type]), 'test'), ' for {}'.format(str(device_type)) if device_type else ''))
_log.info('')
+ if not tests_to_run_by_device[device_type]:
+ continue
if not self._set_up_run(tests_to_run_by_device[device_type], device_type=device_type):
return test_run_results.RunDetails(exit_code=-1)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes