Changeset 240153 in webkit


Ignore:
Timestamp:
Jan 18, 2019 9:54:52 AM (5 years ago)
Author:
Jonathan Bedard
Message:

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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r240151 r240153  
     12019-01-18  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Implement device type specific expected results (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=192162
     5        <rdar://problem/46345449>
     6
     7        Unreviewed infrastructure fix.
     8
     9        * Scripts/webkitpy/layout_tests/controllers/manager.py:
     10        (Manager.run): Don't boot a device if no tests are available to run on it.
     11
    1122019-01-18  Jonathan Bedard  <jbedard@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

    r240150 r240153  
    253253            _log.info('Running {}{}'.format(pluralize(len(tests_to_run_by_device[device_type]), 'test'), ' for {}'.format(str(device_type)) if device_type else ''))
    254254            _log.info('')
     255            if not tests_to_run_by_device[device_type]:
     256                continue
    255257            if not self._set_up_run(tests_to_run_by_device[device_type], device_type=device_type):
    256258                return test_run_results.RunDetails(exit_code=-1)
Note: See TracChangeset for help on using the changeset viewer.