diff options
| -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" ], }, } |