From c8c2d1901aec01e934adf561a9fdf0cc776cdef8 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 29 Jan 2018 16:35:13 +0100 Subject: BASELINE: Update Chromium to 64.0.3282.139 Change-Id: I1cae68fe9c94ff7608b26b8382fc19862cdb293a Reviewed-by: Alexandru Croitor --- chromium/testing/scripts/common.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'chromium/testing/scripts/common.py') diff --git a/chromium/testing/scripts/common.py b/chromium/testing/scripts/common.py index 6454aff3888..da3e34462b1 100644 --- a/chromium/testing/scripts/common.py +++ b/chromium/testing/scripts/common.py @@ -179,6 +179,15 @@ def parse_common_test_results(json_results, test_separator='/'): return results +def extract_filter_list(filter_list): + """Helper for isolated script test wrappers. Parses the + --isolated-script-test-filter command line argument. Currently, double-colon + ('::') is used as the separator between test names, because a single colon may + be used in the names of perf benchmarks, which contain URLs. + """ + return filter_list.split('::') + + def run_integration_test(script_to_run, extra_args, log_file, output): integration_test_res = subprocess.call( [sys.executable, script_to_run] + extra_args) -- cgit v1.2.1