summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ulya Trofimovich <skvadrik@google.com> 2024-11-19 09:02:33 +0000
committer David Srbecky <dsrbecky@google.com> 2024-11-22 08:48:12 +0000
commit41b5aa7c71588481153a8cdf45077b0f44217300 (patch)
tree3804950246ef46545c2866362f23958ce13900f4
parent500d22b9536246d9f7ff407a6aa6028b7de70e17 (diff)
Increase timeout (give extra 60 min) for tests on QEMU.
Test: launched custom LUCI build as: led get-builder art/ci/qemu.riscv.64 \ | led edit-gerrit-cl https://android-review.googlesource.com/c/platform/art/+/3364946 \ | led launch Change-Id: I517ee0528c385cca8d1e65aee760286477897bd7
-rwxr-xr-xtest/default_run.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/default_run.py b/test/default_run.py
index 9d7179e68a..fa6341a31d 100755
--- a/test/default_run.py
+++ b/test/default_run.py
@@ -427,6 +427,10 @@ def default_run(ctx, args, **kwargs):
if HOST or ON_VM:
TIME_OUT = "timeout"
+# Give extra 60 min for tests on QEMU (to avoid timeouts in debuggable mode).
+ if ON_VM:
+ TIME_OUT_EXTRA = 6000
+
# If you change this, update the timeout in testrunner.py as well.
if not TIME_OUT_VALUE:
# 10 minutes is the default.