diff options
author | Lucian Musat <george.l.musat@intel.com> | 2015-04-09 11:08:12 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-09 19:48:04 +0100 |
commit | 4d3574e7fe5353b4dbbf5266a8b950b57542a743 (patch) | |
tree | 8cd75ea1446a0199d624028a82e2b0d49532a5e8 /meta | |
parent | bc6ac3058d7adb6f1bf87e57deaa50347f452e59 (diff) | |
download | openembedded-core-4d3574e7fe5353b4dbbf5266a8b950b57542a743.tar.gz openembedded-core-4d3574e7fe5353b4dbbf5266a8b950b57542a743.tar.bz2 openembedded-core-4d3574e7fe5353b4dbbf5266a8b950b57542a743.zip |
oeqa/runtime: Boot test for poky-tiny.
Bug 6705.
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/_qemutiny.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/_qemutiny.py b/meta/lib/oeqa/runtime/_qemutiny.py new file mode 100644 index 0000000000..a3c29f3572 --- /dev/null +++ b/meta/lib/oeqa/runtime/_qemutiny.py @@ -0,0 +1,9 @@ +import unittest +from oeqa.oetest import oeRuntimeTest +from oeqa.utils.qemutinyrunner import * + +class QemuTinyTest(oeRuntimeTest): + + def test_boot_tiny(self): + (status, output) = self.target.run_serial('uname -a') + self.assertTrue("yocto-tiny" in output, msg="Cannot detect poky tiny boot!")
\ No newline at end of file |