]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/runtime/smart: Increase timeout to 1500 test
authorSaul Wold <sgw@linux.intel.com>
Mon, 16 Sep 2013 22:07:46 +0000 (22:07 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 17 Sep 2013 18:26:57 +0000 (19:26 +0100)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/runtime/smart.py

index 558065525f0e7071f3a2fb0b57ebcb2c02599a42..c3fdf7d499148788722c7dde6cae945952c6e5e7 100644 (file)
@@ -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)