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-10 18:10:27 +0100 |
commit | 3d1106ea4bd41f80af2dfa43e9d8918aa5dfaa16 (patch) | |
tree | ff659c9952b29b006f36ad7cc887153ae1e7c50f /meta/lib | |
parent | 38320db53f0dc99f505f5200dfdce6ea8e083173 (diff) | |
download | poky-3d1106ea4bd41f80af2dfa43e9d8918aa5dfaa16.tar.gz |
oeqa/runtime: Boot test for poky-tiny.
Bug 6705.
(From OE-Core rev: 4d3574e7fe5353b4dbbf5266a8b950b57542a743)
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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 @@ | |||
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!") \ No newline at end of file | ||