summaryrefslogtreecommitdiff
path: root/chromium/testing/scripts/common.py
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-06 12:48:11 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-13 09:33:43 +0000
commit7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (patch)
treefa14ba0ca8d2683ba2efdabd246dc9b18a1229c6 /chromium/testing/scripts/common.py
parent79b4f909db1049fca459c07cca55af56a9b54fe3 (diff)
downloadqtwebengine-chromium-7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3.tar.gz
BASELINE: Update Chromium to 84.0.4147.141
Change-Id: Ib85eb4cfa1cbe2b2b81e5022c8cad5c493969535 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/testing/scripts/common.py')
-rw-r--r--chromium/testing/scripts/common.py4
1 files changed, 4 insertions, 0 deletions
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()