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>
This commit is contained in:
Aníbal Limón 2017-05-26 09:02:04 -07:00 committed by Richard Purdie
parent c4f6c20472
commit 6dcbe84505
2 changed files with 5 additions and 9 deletions

View File

@ -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
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(oeSelfTest):
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