From: Saul Wold Date: Mon, 16 Sep 2013 22:07:46 +0000 (+0000) Subject: oeqa/runtime/smart: Increase timeout to 1500 test X-Git-Tag: 2015-4~5139 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a99edb5552839fd50326dd3aa4ee2f36f6026882;p=openembedded-core.git oeqa/runtime/smart: Increase timeout to 1500 test Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- 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)