[oe-commits] Saul Wold : oeqa/runtime/smart: Increase timeout to 1500 test

git at git.openembedded.org git at git.openembedded.org
Tue Sep 17 18:23:02 UTC 2013


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

Author: Saul Wold <sgw at linux.intel.com>
Date:   Mon Sep 16 22:07:46 2013 +0000

oeqa/runtime/smart: Increase timeout to 1500 test

Signed-off-by: Saul Wold <sgw at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

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

diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py
index 5580655..c3fdf7d 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, 900)
+        status, output = self.target.run(command, 1500)
         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