aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/qemurunner.py
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2019-01-03 16:09:05 +0800
committerRobert Yang <liezhi.yang@windriver.com>2019-01-03 16:12:32 +0800
commitca03a4591117aea193d7cbb9cee11ef7cd92a503 (patch)
tree6e11aa26ef7755378ece8e9acfe956f36048b6af /meta/lib/oeqa/utils/qemurunner.py
parentcaa776bdcf8ea34c857f45970370bf771075f4bc (diff)
downloadopenembedded-core-contrib-rbt/time.tar.gz
oeqa/utils/qemurunner: set timeout to 60s for run_serialrbt/time
The 5s timeout for non-kvm is too short, especially when the load is high, which leads to unexpected errors, so set timeout to 60s by default. Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta/lib/oeqa/utils/qemurunner.py')
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index cce95e13f4..7ef506b60a 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -430,7 +430,7 @@ class QemuRunner:
return True
return False
- def run_serial(self, command, raw=False, timeout=5):
+ def run_serial(self, command, raw=False, timeout=60):
# We assume target system have echo to get command status
if not raw:
command = "%s; echo $?\n" % command