diff options
| -rw-r--r-- | meta/lib/oeqa/runtime/cases/_qemutiny.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/meta/lib/oeqa/runtime/cases/_qemutiny.py b/meta/lib/oeqa/runtime/cases/_qemutiny.py index 14ff8b98b2..816fd4a7cb 100644 --- a/meta/lib/oeqa/runtime/cases/_qemutiny.py +++ b/meta/lib/oeqa/runtime/cases/_qemutiny.py | |||
| @@ -5,10 +5,15 @@ | |||
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | from oeqa.runtime.case import OERuntimeTestCase | 7 | from oeqa.runtime.case import OERuntimeTestCase |
| 8 | from oeqa.core.target.qemu import OEQemuTarget | ||
| 8 | 9 | ||
| 9 | class QemuTinyTest(OERuntimeTestCase): | 10 | class QemuTinyTest(OERuntimeTestCase): |
| 10 | 11 | ||
| 11 | def test_boot_tiny(self): | 12 | def test_boot_tiny(self): |
| 12 | status, output = self.target.run_serial('uname -a') | 13 | # Until the target has explicit run_serial support, check that the |
| 13 | msg = "Cannot detect poky tiny boot!" | 14 | # target is the qemu runner |
| 14 | self.assertTrue("yocto-tiny" in output, msg) | 15 | if isinstance(self.target, OEQemuTarget): |
| 16 | status, output = self.target.runner.run_serial('uname -a') | ||
| 17 | self.assertIn("Linux", output) | ||
| 18 | else: | ||
| 19 | self.skipTest("Target %s is not OEQemuTarget" % self.target) | ||
