Changeset 238950 in webkit


Ignore:
Timestamp:
Dec 6, 2018 10:18:33 PM (5 years ago)
Author:
Jonathan Bedard
Message:

Consecutive DumpRenderTree crashes are happening again on WinCairo BuildBots since r238903
https://bugs.webkit.org/show_bug.cgi?id=192486

Unreviewed infrastructure fix.

WinCairo bots define WEBKIT_TEST_CHILD_PROCESSES to run less processes due to RAM restrictions.

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(_set_up_derived_options):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r238948 r238950  
     12018-12-06  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Consecutive DumpRenderTree crashes are happening again on WinCairo BuildBots since r238903
     4        https://bugs.webkit.org/show_bug.cgi?id=192486
     5
     6        Unreviewed infrastructure fix.
     7
     8        WinCairo bots define WEBKIT_TEST_CHILD_PROCESSES to run less processes due to RAM restrictions.
     9
     10        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
     11        (_set_up_derived_options):
     12
    1132018-12-06  David Kilzer  <ddkilzer@apple.com>
    214
  • trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r238903 r238950  
    371371def _set_up_derived_options(port, options):
    372372    """Sets the options values that depend on other options values."""
     373    if not options.child_processes:
     374        options.child_processes = os.environ.get('WEBKIT_TEST_CHILD_PROCESSES')
     375
    373376    if not options.configuration:
    374377        options.configuration = port.default_configuration()
Note: See TracChangeset for help on using the changeset viewer.