[oe-commits] Stefan Stanacar : lib/oeqa/runtime: timeout increases

git at git.openembedded.org git at git.openembedded.org
Sat Sep 14 07:17:51 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: daa3ad5807f6fc0d15b9310937d07a16edac6d22
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=daa3ad5807f6fc0d15b9310937d07a16edac6d22

Author: Stefan Stanacar <stefanx.stanacar at intel.com>
Date:   Fri Sep 13 15:48:18 2013 +0300

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 at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oeqa/runtime/ping.py  |    2 +-
 meta/lib/oeqa/runtime/smart.py |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/lib/oeqa/runtime/ping.py b/meta/lib/oeqa/runtime/ping.py
index 935f638..e163b96 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]
diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py
index e2f0aea..5580655 100644
--- a/meta/lib/oeqa/runtime/smart.py
+++ b/meta/lib/oeqa/runtime/smart.py
@@ -15,7 +15,7 @@ class SmartTest(oeRuntimeTest):
     @skipUnlessPassed('test_smart_help')
     def smart(self, command, expected = 0):
         command = 'smart %s' % command
-        status, output = self.target.run(command, 500)
+        status, output = self.target.run(command, 900)
         message = os.linesep.join([command, output])
         self.assertEqual(status, expected, message)
         self.assertFalse("Cannot allocate memory" in output, message)



More information about the Openembedded-commits mailing list