summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2017-05-26 09:02:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-06 19:02:30 +0100
commit59b2135007d80b3b76ef1256bf5d5aa6076178bc (patch)
tree0d2ebcae15ce725c884617be8aefe4fe9060dc15
parentfb0ed1cdeac9e716d1eaa5b11c8262a209bf148e (diff)
downloadopenembedded-core-contrib-59b2135007d80b3b76ef1256bf5d5aa6076178bc.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 Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
-rw-r--r--meta-yocto-bsp/lib/oeqa/selftest/__init__.py0
-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 @@
-from oeqa.selftest.base import oeSelfTest
-from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu
-from oeqa.utils.decorators import testcase
-import re
import os
-import sys
-import logging
-
-class Systemdboot(oeSelfTest):
+from oeqa.selftest.case import OESelftestTestCase
+from oeqa.core.decorator.oeid import OETestID
+from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu
+class Systemdboot(OESelftestTestCase):
def _common_setup(self):
"""
Common setup for test cases: 1445, XXXX
@@ -28,7 +24,7 @@ class Systemdboot(oeSelfTest):
bitbake('mtools-native core-image-minimal')
- @testcase(1445)
+ @OETestID(1445)
def test_efi_systemdboot_images_can_be_built(self):
"""
Summary: Check if systemd-boot images can be built correctly