From 6c91641271e536ffaa88a1dff5127e42ee99a91e Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 25 Jan 2016 11:39:07 +0100 Subject: BASELINE: Update Chromium to 49.0.2623.23 Also adds missing printing sources. Change-Id: I3726b8f0c7d6751c9fc846096c571fadca7108cd Reviewed-by: Oswald Buddenhagen --- chromium/testing/scripts/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chromium/testing/scripts/common.py') diff --git a/chromium/testing/scripts/common.py b/chromium/testing/scripts/common.py index 3697c4b7373..69ee3e49b97 100644 --- a/chromium/testing/scripts/common.py +++ b/chromium/testing/scripts/common.py @@ -59,9 +59,9 @@ def run_script(argv, funcs): return args.func(args) -def run_command(argv): +def run_command(argv, env=None): print 'Running %r' % argv - rc = subprocess.call(argv) + rc = subprocess.call(argv, env=env) print 'Command %r returned exit code %d' % (argv, rc) return rc -- cgit v1.2.1