mirror of
https://git.yoctoproject.org/poky
synced 2026-03-31 02:02:25 +02:00
get_bb_var calls bitbake every time it is used and every call would take about 7 seconds. There are tests that calls get_bb_var several times when they can use get_bb_vars. Also there are tests that calls it to fetch the same variable over and over again. This will optimize the use of get_bb_var and get_bb_vars for a little speed up in the tests. [YOCTO #11037] (From OE-Core rev: e53f86ba8aeb6d2e9eb259329001d27d62401072) Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.7 KiB
Python
44 lines
1.7 KiB
Python
from oeqa.selftest.base import oeSelfTest
|
|
from oeqa.utils.commands import bitbake, get_bb_vars
|
|
from oeqa.utils.decorators import testcase
|
|
import glob
|
|
import os
|
|
import shutil
|
|
|
|
|
|
class Archiver(oeSelfTest):
|
|
|
|
@testcase(1345)
|
|
def test_archiver_allows_to_filter_on_recipe_name(self):
|
|
"""
|
|
Summary: The archiver should offer the possibility to filter on the recipe. (#6929)
|
|
Expected: 1. Included recipe (busybox) should be included
|
|
2. Excluded recipe (zlib) should be excluded
|
|
Product: oe-core
|
|
Author: Daniel Istrate <daniel.alexandrux.istrate@intel.com>
|
|
AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com>
|
|
"""
|
|
|
|
include_recipe = 'busybox'
|
|
exclude_recipe = 'zlib'
|
|
|
|
features = 'INHERIT += "archiver"\n'
|
|
features += 'ARCHIVER_MODE[src] = "original"\n'
|
|
features += 'COPYLEFT_PN_INCLUDE = "%s"\n' % include_recipe
|
|
features += 'COPYLEFT_PN_EXCLUDE = "%s"\n' % exclude_recipe
|
|
self.write_config(features)
|
|
|
|
bitbake('-c clean %s %s' % (include_recipe, exclude_recipe))
|
|
bitbake("%s %s" % (include_recipe, exclude_recipe))
|
|
|
|
bb_vars = get_bb_vars(['DEPLOY_DIR_SRC', 'TARGET_SYS'])
|
|
src_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], bb_vars['TARGET_SYS'])
|
|
|
|
# Check that include_recipe was included
|
|
included_present = len(glob.glob(src_path + '/%s-*' % include_recipe))
|
|
self.assertTrue(included_present, 'Recipe %s was not included.' % include_recipe)
|
|
|
|
# Check that exclude_recipe was excluded
|
|
excluded_present = len(glob.glob(src_path + '/%s-*' % exclude_recipe))
|
|
self.assertFalse(excluded_present, 'Recipe %s was not excluded.' % exclude_recipe)
|