aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/ping.py
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-09-13 15:48:18 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-13 17:41:19 +0100
commitdaa3ad5807f6fc0d15b9310937d07a16edac6d22 (patch)
tree56aff77895ed267f4a21fb52aeadcc356fef38ad /meta/lib/oeqa/runtime/ping.py
parent1b8e4abd2d9c0901d38d89d0f944fe1ffd019379 (diff)
downloadopenembedded-core-contrib-daa3ad5807f6fc0d15b9310937d07a16edac6d22.tar.gz
lib/oeqa/runtime: timeout increases
Increase the timeout for smart commands as under load for qemumips it's still to small. Also give ping more time fixing a potential timeout for sato systemd. Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/ping.py')
-rw-r--r--meta/lib/oeqa/runtime/ping.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/ping.py b/meta/lib/oeqa/runtime/ping.py
index 935f638891..e163b969f0 100644
--- a/meta/lib/oeqa/runtime/ping.py
+++ b/meta/lib/oeqa/runtime/ping.py
@@ -9,7 +9,7 @@ class PingTest(oeRuntimeTest):
def test_ping(self):
output = ''
status = None
- endtime = time.time() + 30
+ endtime = time.time() + 60
while status != 0 and time.time() < endtime:
proc = subprocess.Popen("ping -c 1 %s" % oeRuntimeTest.tc.qemu.ip, shell=True, stdout=subprocess.PIPE)
output += proc.communicate()[0]