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/lib/oeqa/runtime/smart.py | |
parent | eae5f4bdaccf495f5992fe439ceddb49964d1087 (diff) | |
download | 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/lib/oeqa/runtime/smart.py')
-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 558065525f..c3fdf7d499 100644 --- a/meta/lib/oeqa/runtime/smart.py +++ b/meta/lib/oeqa/runtime/smart.py | |||
@@ -15,7 +15,7 @@ class SmartTest(oeRuntimeTest): | |||
15 | @skipUnlessPassed('test_smart_help') | 15 | @skipUnlessPassed('test_smart_help') |
16 | def smart(self, command, expected = 0): | 16 | def smart(self, command, expected = 0): |
17 | command = 'smart %s' % command | 17 | command = 'smart %s' % command |
18 | status, output = self.target.run(command, 900) | 18 | status, output = self.target.run(command, 1500) |
19 | message = os.linesep.join([command, output]) | 19 | message = os.linesep.join([command, output]) |
20 | self.assertEqual(status, expected, message) | 20 | self.assertEqual(status, expected, message) |
21 | self.assertFalse("Cannot allocate memory" in output, message) | 21 | self.assertFalse("Cannot allocate memory" in output, message) |