diff options
author | Saul Wold <sgw@linux.intel.com> | 2013-09-16 22:07:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-17 19:34:55 +0100 |
commit | 14fee32867c42c0610411c83a0f85dc9a15971fa (patch) | |
tree | 928d03c08802a59f7297a23899895a939dfe3216 /meta | |
parent | eae5f4bdaccf495f5992fe439ceddb49964d1087 (diff) | |
download | ast2050-yocto-poky-14fee32867c42c0610411c83a0f85dc9a15971fa.zip ast2050-yocto-poky-14fee32867c42c0610411c83a0f85dc9a15971fa.tar.gz |
oeqa/runtime/smart: Increase timeout to 1500 test
(From OE-Core rev: a99edb5552839fd50326dd3aa4ee2f36f6026882)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | 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) |