From 32f5a1c56531e4210bc4cf8d8c7825d66e081888 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Wed, 18 Nov 2020 16:35:47 +0100 Subject: BASELINE: Update Chromium to 87.0.4280.67 Change-Id: Ib157360be8c2ffb2c73125751a89f60e049c1d54 Reviewed-by: Allan Sandfeld Jensen --- chromium/testing/scripts/common.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'chromium/testing/scripts/common.py') diff --git a/chromium/testing/scripts/common.py b/chromium/testing/scripts/common.py index ea67b5ca88a..0d0811a4147 100644 --- a/chromium/testing/scripts/common.py +++ b/chromium/testing/scripts/common.py @@ -324,6 +324,9 @@ class BaseIsolatedScriptArgsAdapter(object): def clean_up_after_test_run(self): pass + def do_pre_test_run_tasks(self): + pass + def do_post_test_run_tasks(self): pass @@ -331,6 +334,8 @@ class BaseIsolatedScriptArgsAdapter(object): self.parse_args() cmd = self.generate_isolated_script_cmd() + self.do_pre_test_run_tasks() + env = os.environ.copy() # Assume we want to set up the sandbox environment variables all the -- cgit v1.2.1