Changeset 70217 in webkit


Ignore:
Timestamp:
Oct 21, 2010 2:35:01 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-21 Gabor Rapcsanyi <rgabor@inf.u-szeged.hu>

Reviewed by Ojan Vafai.

[NRWT] Get child process number from an environment variable
https://bugs.webkit.org/show_bug.cgi?id=47981

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r70207 r70217  
     12010-10-21  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        [NRWT] Get child process number from an environment variable
     6        https://bugs.webkit.org/show_bug.cgi?id=47981
     7
     8        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
     9
    1102010-10-20  David Kilzer  <ddkilzer@apple.com>
    211
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r69674 r70217  
    14371437    if not options.child_processes:
    14381438        # FIXME: Investigate perf/flakiness impact of using cpu_count + 1.
    1439         options.child_processes = str(port_obj.default_child_processes())
     1439        options.child_processes = os.environ.get("WEBKIT_TEST_CHILD_PROCESSES",
     1440                                                 str(port_obj.default_child_processes()))
    14401441
    14411442    if not options.configuration:
Note: See TracChangeset for help on using the changeset viewer.