xref: /OK3568_Linux_fs/yocto/poky/meta-selftest/lib/oeqa/selftest/cases/external-layer.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun#from oeqa.selftest.base import oeSelfTest
2*4882a593Smuzhiyunfrom oeqa.selftest.case import OESelftestTestCase
3*4882a593Smuzhiyun#from oeqa.utils.decorators import testcase
4*4882a593Smuzhiyun
5*4882a593Smuzhiyun
6*4882a593Smuzhiyunclass ImportedTests(OESelftestTestCase):
7*4882a593Smuzhiyun
8*4882a593Smuzhiyun    def test_unconditional_pass(self):
9*4882a593Smuzhiyun        """
10*4882a593Smuzhiyun        Summary: Doesn't check anything, used to check import test from other layers.
11*4882a593Smuzhiyun        Expected: 1. Pass unconditionally
12*4882a593Smuzhiyun        Product: oe-core
13*4882a593Smuzhiyun        Author: Mariano Lopez <mariano.lopez@intel.com
14*4882a593Smuzhiyun        """
15*4882a593Smuzhiyun
16*4882a593Smuzhiyun        self.assertEqual(True, True, msg = "Impossible to fail this test")
17