diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-05-26 09:02:04 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-06 19:02:44 +0100 |
commit | 6dcbe845050449dbd4faffcaf7951417400007cb (patch) | |
tree | 4b3f79d2972ffc122bac144a0cae528f4b3c72e4 | |
parent | c4f6c20472bdc26b03ea11b9ddc48c9cb5bc07cf (diff) | |
download | poky-6dcbe845050449dbd4faffcaf7951417400007cb.tar.gz |
selftest: Migrate systemd_boot test case to the new framework
- systemd_boot.py: Use the new case class and change decorator for id
- __init__.py: Because isn't needed now
(From meta-yocto rev: 59b2135007d80b3b76ef1256bf5d5aa6076178bc)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-yocto-bsp/lib/oeqa/selftest/__init__.py | 0 | ||||
-rw-r--r-- | meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py (renamed from meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py) | 14 |
2 files changed, 5 insertions, 9 deletions
diff --git a/meta-yocto-bsp/lib/oeqa/selftest/__init__.py b/meta-yocto-bsp/lib/oeqa/selftest/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 --- a/meta-yocto-bsp/lib/oeqa/selftest/__init__.py +++ /dev/null | |||
diff --git a/meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py b/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py index f7f74db7e2..848cdf7852 100644 --- a/meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py +++ b/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py | |||
@@ -1,14 +1,10 @@ | |||
1 | from oeqa.selftest.base import oeSelfTest | ||
2 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu | ||
3 | from oeqa.utils.decorators import testcase | ||
4 | import re | ||
5 | import os | 1 | import os |
6 | import sys | ||
7 | import logging | ||
8 | |||
9 | 2 | ||
10 | class Systemdboot(oeSelfTest): | 3 | from oeqa.selftest.case import OESelftestTestCase |
4 | from oeqa.core.decorator.oeid import OETestID | ||
5 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu | ||
11 | 6 | ||
7 | class Systemdboot(OESelftestTestCase): | ||
12 | def _common_setup(self): | 8 | def _common_setup(self): |
13 | """ | 9 | """ |
14 | Common setup for test cases: 1445, XXXX | 10 | Common setup for test cases: 1445, XXXX |
@@ -28,7 +24,7 @@ class Systemdboot(oeSelfTest): | |||
28 | bitbake('mtools-native core-image-minimal') | 24 | bitbake('mtools-native core-image-minimal') |
29 | 25 | ||
30 | 26 | ||
31 | @testcase(1445) | 27 | @OETestID(1445) |
32 | def test_efi_systemdboot_images_can_be_built(self): | 28 | def test_efi_systemdboot_images_can_be_built(self): |
33 | """ | 29 | """ |
34 | Summary: Check if systemd-boot images can be built correctly | 30 | Summary: Check if systemd-boot images can be built correctly |