diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-05-26 09:54:50 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-05 17:59:40 +0100 |
commit | 8441da8fbc7ff2237d9ccd3a5c5117345f5c87b2 (patch) | |
tree | cbad9505c76de7966079eaeb4d4c3a2cc162ba8d /meta | |
parent | f295b70ace0ffc28256140a21af5c3a8903297cb (diff) | |
download | openembedded-core-8441da8fbc7ff2237d9ccd3a5c5117345f5c87b2.tar.gz openembedded-core-8441da8fbc7ff2237d9ccd3a5c5117345f5c87b2.tar.bz2 openembedded-core-8441da8fbc7ff2237d9ccd3a5c5117345f5c87b2.zip |
oeqa/selftest/case: Don't figure out the testlayer inside
The test layer is added at init of selftest and is the same
across test runs so pass it as a attr in the context.
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/case.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/case.py b/meta/lib/oeqa/selftest/case.py index 1e6754a160..31a11fddda 100644 --- a/meta/lib/oeqa/selftest/case.py +++ b/meta/lib/oeqa/selftest/case.py @@ -9,7 +9,7 @@ import errno from unittest.util import safe_repr import oeqa.utils.ftools as ftools -from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_test_layer +from oeqa.utils.commands import runCmd, bitbake, get_bb_var from oeqa.core.case import OETestCase class OESelftestTestCase(OETestCase): @@ -21,7 +21,6 @@ class OESelftestTestCase(OETestCase): local_bblayers_backup = os.path.join(builddir, "conf/bblayers.bk") testinc_bblayers_path = os.path.join(builddir, "conf/bblayers.inc") machineinc_path = os.path.join(builddir, "conf/machine.inc") - testlayer_path = get_test_layer() def __init__(self, methodName="runTest"): self._extra_tear_down_commands = [] @@ -35,6 +34,7 @@ class OESelftestTestCase(OETestCase): @classmethod def setUpClass(cls): super(OESelftestTestCase, cls).setUpClass() + cls.testlayer_path = cls.tc.testlayer_path cls.add_include() @classmethod @@ -75,7 +75,7 @@ class OESelftestTestCase(OETestCase): def remove_inc_files(cls): try: os.remove(os.path.join(cls.builddir, "conf/selftest.inc")) - for root, _, files in os.walk(get_test_layer()): + for root, _, files in os.walk(cls.testlayer_path): for f in files: if f == 'test_recipe.inc': os.remove(os.path.join(root, f)) |