aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2013-09-16 22:07:46 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-17 19:26:57 +0100
commita99edb5552839fd50326dd3aa4ee2f36f6026882 (patch)
tree7d8537b79c1c679c1d835aa8af16c27db9d1e42a /meta/lib/oeqa
parent65667415ecc8abdf1f15a48c5520ed78140afb60 (diff)
downloadopenembedded-core-a99edb5552839fd50326dd3aa4ee2f36f6026882.tar.gz
oeqa/runtime/smart: Increase timeout to 1500 test
Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/runtime/smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py
index 558065525f..c3fdf7d499 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)