summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2013-07-19 09:53:01 +0300
committerFathi Boudra <fathi.boudra@linaro.org>2013-07-19 09:53:01 +0300
commitd5f91bc1e420a5afc2f186baeeb3344b73bb6725 (patch)
tree83a4bbcb67a4bad1c77e140c492b3dd74647c37f
parentee2d792e321c4819a7c53063202c6a1354796175 (diff)
Add a default timeout when a test isn't specified.
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
-rwxr-xr-xlava-submit.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lava-submit.py b/lava-submit.py
index 1e35abf..2602a33 100755
--- a/lava-submit.py
+++ b/lava-submit.py
@@ -17,7 +17,6 @@ tests_timeout = {
'kernel-version': 300,
'leb-basic-graphics': 7200,
'ltp': 7200,
- 'mauve': 18000,
'mysql': 300,
'network-tests-basic': 1200,
'perf': 300,
@@ -252,7 +251,7 @@ def main():
actions.append({
'command': 'lava_test_shell',
'parameters': {
- 'timeout': tests_timeout[test],
+ 'timeout': tests_timeout.get(test, 18000),
'testdef_repos': test_list
}
})