summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils')
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py2
-rw-r--r--meta/lib/oeqa/utils/qemutinyrunner.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index f7fbe1bb04..cc95dc2990 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -421,7 +421,7 @@ class QemuRunner:
421 return True 421 return True
422 return False 422 return False
423 423
424 def run_serial(self, command, raw=False, timeout=5): 424 def run_serial(self, command, raw=False, timeout=60):
425 # We assume target system have echo to get command status 425 # We assume target system have echo to get command status
426 if not raw: 426 if not raw:
427 command = "%s; echo $?\n" % command 427 command = "%s; echo $?\n" % command
diff --git a/meta/lib/oeqa/utils/qemutinyrunner.py b/meta/lib/oeqa/utils/qemutinyrunner.py
index 63b5d1648b..5aa99d0686 100644
--- a/meta/lib/oeqa/utils/qemutinyrunner.py
+++ b/meta/lib/oeqa/utils/qemutinyrunner.py
@@ -108,7 +108,7 @@ class QemuTinyRunner(QemuRunner):
108 108
109 return self.is_alive() 109 return self.is_alive()
110 110
111 def run_serial(self, command, timeout=5): 111 def run_serial(self, command, timeout=60):
112 self.server_socket.sendall(command+'\n') 112 self.server_socket.sendall(command+'\n')
113 data = '' 113 data = ''
114 status = 0 114 status = 0