From 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Tue, 6 Oct 2020 12:48:11 +0200 Subject: BASELINE: Update Chromium to 84.0.4147.141 Change-Id: Ib85eb4cfa1cbe2b2b81e5022c8cad5c493969535 Reviewed-by: Allan Sandfeld Jensen --- chromium/testing/scripts/common.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'chromium/testing/scripts/common.py') diff --git a/chromium/testing/scripts/common.py b/chromium/testing/scripts/common.py index f7b34541899..d092dbe1290 100644 --- a/chromium/testing/scripts/common.py +++ b/chromium/testing/scripts/common.py @@ -319,6 +319,9 @@ class BaseIsolatedScriptArgsAdapter(object): def clean_up_after_test_run(self): pass + def do_post_test_run_tasks(self): + pass + def run_test(self): self.parse_args() cmd = self.generate_isolated_script_cmd() @@ -339,6 +342,7 @@ class BaseIsolatedScriptArgsAdapter(object): else: exit_code = test_env.run_command(cmd, env=env) print 'Command returned exit code %d' % exit_code + self.do_post_test_run_tasks() return exit_code except Exception: traceback.print_exc() -- cgit v1.2.1