⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243774 in webkit


Ignore:
Timestamp:
Apr 2, 2019, 5:04:29 PM (7 years ago)
Author:
Kocsen Chung
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

Location:
branches/safari-607-branch/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607-branch/Tools/ChangeLog

    r243773 r243774  
     12019-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
    1282019-04-02  Kocsen Chung  <kocsen_chung@apple.com>
    229
  • branches/safari-607-branch/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

    r243772 r243774  
    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.