| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| index d01217095fafe55b7842be09c50d8b7091a519e0..0810b1b3241fcb6b89d1a4fefca75c2ee6dd83d9 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| @@ -473,11 +473,11 @@ def _set_up_derived_options(port, options, args):
|
| options.batch_size = port.default_batch_size()
|
|
|
| if not options.child_processes:
|
| - options.child_processes = os.environ.get("WEBKIT_TEST_CHILD_PROCESSES",
|
| - str(port.default_child_processes()))
|
| + options.child_processes = port.host.environ.get("WEBKIT_TEST_CHILD_PROCESSES",
|
| + str(port.default_child_processes()))
|
| if not options.max_locked_shards:
|
| - options.max_locked_shards = int(os.environ.get("WEBKIT_TEST_MAX_LOCKED_SHARDS",
|
| - str(port.default_max_locked_shards())))
|
| + options.max_locked_shards = int(port.host.environ.get("WEBKIT_TEST_MAX_LOCKED_SHARDS",
|
| + str(port.default_max_locked_shards())))
|
|
|
| if not options.configuration:
|
| options.configuration = port.default_configuration()
|
|
|