summaryrefslogtreecommitdiff
path: root/chromium/testing/scripts/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/testing/scripts/common.py')
-rw-r--r--chromium/testing/scripts/common.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/testing/scripts/common.py b/chromium/testing/scripts/common.py
index e68537f3e5d..3e9492e12a4 100644
--- a/chromium/testing/scripts/common.py
+++ b/chromium/testing/scripts/common.py
@@ -19,7 +19,7 @@ SRC_DIR = os.path.abspath(
os.path.join(SCRIPT_DIR, os.path.pardir, os.path.pardir))
-# run-webkit-tests returns the number of failures as the return
+# run_web_tests.py returns the number of failures as the return
# code, but caps the return code at 101 to avoid overflow or colliding
# with reserved values from the shell.
MAX_FAILURES_EXIT_STATUS = 101
@@ -89,6 +89,7 @@ def run_runtest(cmd_args, runtest_args):
sys.executable,
cmd_args.paths['runit.py'],
'--show-path',
+ '--with-third-party-lib',
sys.executable,
cmd_args.paths['runtest.py'],
]
@@ -114,7 +115,7 @@ def temporary_file():
def parse_common_test_results(json_results, test_separator='/'):
def convert_trie_to_flat_paths(trie, prefix=None):
- # Also see webkitpy.layout_tests.layout_package.json_results_generator
+ # Also see blinkpy.web_tests.layout_package.json_results_generator
result = {}
for name, data in trie.iteritems():
if prefix: