Files
openwrt_yocto/poky/meta/lib/oeqa/runtime/cases/_qemutiny.py
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

20 lines
604 B
Python

#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#
from oeqa.runtime.case import OERuntimeTestCase
from oeqa.core.target.qemu import OEQemuTarget
class QemuTinyTest(OERuntimeTestCase):
def test_boot_tiny(self):
# Until the target has explicit run_serial support, check that the
# target is the qemu runner
if isinstance(self.target, OEQemuTarget):
status, output = self.target.runner.run_serial('uname -a')
self.assertIn("Linux", output)
else:
self.skipTest("Target %s is not OEQemuTarget" % self.target)