diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2018-08-24 12:15:48 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2018-08-28 13:30:04 +0000 |
commit | b014812705fc80bff0a5c120dfcef88f349816dc (patch) | |
tree | 25a2e2d9fa285f1add86aa333389a839f81a39ae /chromium/testing/scripts/common.py | |
parent | 9f4560b1027ae06fdb497023cdcaf91b8511fa74 (diff) | |
download | qtwebengine-chromium-b014812705fc80bff0a5c120dfcef88f349816dc.tar.gz |
BASELINE: Update Chromium to 68.0.3440.125
Change-Id: I23f19369e01f688e496f5bf179abb521ad73874f
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/testing/scripts/common.py')
-rw-r--r-- | chromium/testing/scripts/common.py | 5 |
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: |