diff options
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/minidebuginfo.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/minidebuginfo.py b/meta/lib/oeqa/selftest/cases/minidebuginfo.py index 2919f07939..a8923460f9 100644 --- a/meta/lib/oeqa/selftest/cases/minidebuginfo.py +++ b/meta/lib/oeqa/selftest/cases/minidebuginfo.py | |||
| @@ -8,6 +8,7 @@ import subprocess | |||
| 8 | import tempfile | 8 | import tempfile |
| 9 | import shutil | 9 | import shutil |
| 10 | 10 | ||
| 11 | from oeqa.core.decorator import OETestTag | ||
| 11 | from oeqa.selftest.case import OESelftestTestCase | 12 | from oeqa.selftest.case import OESelftestTestCase |
| 12 | from oeqa.utils.commands import bitbake, get_bb_var, get_bb_vars, runCmd | 13 | from oeqa.utils.commands import bitbake, get_bb_var, get_bb_vars, runCmd |
| 13 | 14 | ||
| @@ -42,3 +43,18 @@ IMAGE_FSTYPES = "tar.bz2" | |||
| 42 | native_sysroot = native_sysroot, target_sys = target_sys) | 43 | native_sysroot = native_sysroot, target_sys = target_sys) |
| 43 | self.assertIn(".gnu_debugdata", r.output) | 44 | self.assertIn(".gnu_debugdata", r.output) |
| 44 | 45 | ||
| 46 | @OETestTag("runqemu") | ||
| 47 | def test_minidebuginfo_qemu(self): | ||
| 48 | """ | ||
| 49 | Test minidebuginfo inside a qemu. | ||
| 50 | This runs test_systemd_coredump_minidebuginfo and other minidebuginfo runtime tests which may be added in the future. | ||
| 51 | """ | ||
| 52 | |||
| 53 | self.write_config(""" | ||
| 54 | DISTRO_FEATURES:append = " minidebuginfo" | ||
| 55 | INIT_MANAGER = "systemd" | ||
| 56 | IMAGE_CLASSES += "testimage" | ||
| 57 | TEST_SUITES = "ping ssh systemd" | ||
| 58 | """) | ||
| 59 | bitbake('core-image-minimal') | ||
| 60 | bitbake('-c testimage core-image-minimal') | ||
