Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | import unittest |
2 | from oeqa.oetest import oeRuntimeTest | ||||
3 | from oeqa.utils.qemutinyrunner import * | ||||
4 | |||||
5 | class QemuTinyTest(oeRuntimeTest): | ||||
6 | |||||
7 | def test_boot_tiny(self): | ||||
8 | (status, output) = self.target.run_serial('uname -a') | ||||
9 | self.assertTrue("yocto-tiny" in output, msg="Cannot detect poky tiny boot!") |