diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-09-13 15:48:18 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-14 08:21:00 +0100 |
commit | 214bb6828ef909f4a6ea61e792c7c715b9c3276f (patch) | |
tree | e641ee516e368241185d397abdc721b6e0f684b7 /meta/lib/oeqa/runtime/ping.py | |
parent | 8ebe7be3d9494c3467b5533091bf6832030aad99 (diff) | |
download | poky-214bb6828ef909f4a6ea61e792c7c715b9c3276f.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.
(From OE-Core rev: daa3ad5807f6fc0d15b9310937d07a16edac6d22)
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.py | 2 |
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): | |||
9 | def test_ping(self): | 9 | def test_ping(self): |
10 | output = '' | 10 | output = '' |
11 | status = None | 11 | status = None |
12 | endtime = time.time() + 30 | 12 | endtime = time.time() + 60 |
13 | while status != 0 and time.time() < endtime: | 13 | while status != 0 and time.time() < endtime: |
14 | proc = subprocess.Popen("ping -c 1 %s" % oeRuntimeTest.tc.qemu.ip, shell=True, stdout=subprocess.PIPE) | 14 | proc = subprocess.Popen("ping -c 1 %s" % oeRuntimeTest.tc.qemu.ip, shell=True, stdout=subprocess.PIPE) |
15 | output += proc.communicate()[0] | 15 | output += proc.communicate()[0] |