diff options
| -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 | ||
