diff options
| author | 2023-01-03 12:04:42 +0000 | |
|---|---|---|
| committer | 2023-01-03 14:02:03 +0000 | |
| commit | f46d832a867d36d04286b7156a5820ea556e9151 (patch) | |
| tree | 9d3b108e8cf6792f66583f8c155d040c0c365bb7 | |
| parent | 41de45060710d64b671a0fa001ec187df221359d (diff) | |
Update timeout on fugu.
Adjust timeout for fugu as the bot is currently red on two tests for
fugu-debug.
Test: testrunner.py
Change-Id: I60bc5f3b5fc8f301dd74db0f5c85a02bebfa181c
| -rw-r--r-- | test/testrunner/device_config.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/testrunner/device_config.py b/test/testrunner/device_config.py index 1fad7d297d..c56a05d0ae 100644 --- a/test/testrunner/device_config.py +++ b/test/testrunner/device_config.py @@ -11,10 +11,11 @@ device_config = { # ########################################## # Fugu's don't have enough memory to support a 128m heap with normal concurrency. + # Also update timeout value as some tests can go beyond the default 600s. 'aosp_fugu' : { - 'run-test-args': [ "--runtime-option", "-Xmx128m" ], + 'run-test-args': [ "--runtime-option", "-Xmx128m", "--timeout", "900" ], }, 'fugu' : { - 'run-test-args': [ "--runtime-option", "-Xmx128m" ], + 'run-test-args': [ "--runtime-option", "-Xmx128m", "--timeout", "900" ], }, } |