mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

This tests adds a check of selftest itself to verify if can add test from other layers. [YOCTO #9770] (From OE-Core rev: 4fe4c408246b9a4a563106d097876e6caefca694) Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Jose Perez Carranza <jose.perez.carranza@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
528 B
Python
17 lines
528 B
Python
#from oeqa.selftest.base import oeSelfTest
|
|
from oeqa.selftest.case import OESelftestTestCase
|
|
#from oeqa.utils.decorators import testcase
|
|
|
|
|
|
class ImportedTests(OESelftestTestCase):
|
|
|
|
def test_unconditional_pass(self):
|
|
"""
|
|
Summary: Doesn't check anything, used to check import test from other layers.
|
|
Expected: 1. Pass unconditionally
|
|
Product: oe-core
|
|
Author: Mariano Lopez <mariano.lopez@intel.com
|
|
"""
|
|
|
|
self.assertEqual(True, True, msg = "Impossible to fail this test")
|