[oe-commits] Lucian Musat : oeqa/runtime: Boot test for poky-tiny.

git at git.openembedded.org git at git.openembedded.org
Fri Apr 10 13:49:05 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: 4d3574e7fe5353b4dbbf5266a8b950b57542a743
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=4d3574e7fe5353b4dbbf5266a8b950b57542a743

Author: Lucian Musat <george.l.musat at intel.com>
Date:   Thu Apr  9 11:08:12 2015 +0300

oeqa/runtime: Boot test for poky-tiny.

Bug 6705.

Signed-off-by: Lucian Musat <george.l.musat at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oeqa/runtime/_qemutiny.py | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/meta/lib/oeqa/runtime/_qemutiny.py b/meta/lib/oeqa/runtime/_qemutiny.py
new file mode 100644
index 0000000..a3c29f3
--- /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



More information about the Openembedded-commits mailing list