diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2017-02-21 14:33:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-01 23:27:10 +0000 |
commit | 19d23814e449101f57c8f149c77ee8697c636f43 (patch) | |
tree | d6e79252c334f3f71caff686423cfa52ff2327a5 /meta/lib/oeqa/selftest/prservice.py | |
parent | ef010c1a1d823870aba80152fc13c32c62e95146 (diff) | |
download | poky-19d23814e449101f57c8f149c77ee8697c636f43.tar.gz |
selftest: Optimize get_bb_var use
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>
Diffstat (limited to 'meta/lib/oeqa/selftest/prservice.py')
-rw-r--r-- | meta/lib/oeqa/selftest/prservice.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/prservice.py b/meta/lib/oeqa/selftest/prservice.py index 0b2dfe6494..34d419762c 100644 --- a/meta/lib/oeqa/selftest/prservice.py +++ b/meta/lib/oeqa/selftest/prservice.py | |||
@@ -12,10 +12,13 @@ from oeqa.utils.decorators import testcase | |||
12 | from oeqa.utils.network import get_free_port | 12 | from oeqa.utils.network import get_free_port |
13 | 13 | ||
14 | class BitbakePrTests(oeSelfTest): | 14 | class BitbakePrTests(oeSelfTest): |
15 | 15 | ||
16 | @classmethod | ||
17 | def setUpClass(cls): | ||
18 | cls.pkgdata_dir = get_bb_var('PKGDATA_DIR') | ||
19 | |||
16 | def get_pr_version(self, package_name): | 20 | def get_pr_version(self, package_name): |
17 | pkgdata_dir = get_bb_var('PKGDATA_DIR') | 21 | package_data_file = os.path.join(self.pkgdata_dir, 'runtime', package_name) |
18 | package_data_file = os.path.join(pkgdata_dir, 'runtime', package_name) | ||
19 | package_data = ftools.read_file(package_data_file) | 22 | package_data = ftools.read_file(package_data_file) |
20 | find_pr = re.search("PKGR: r[0-9]+\.([0-9]+)", package_data) | 23 | find_pr = re.search("PKGR: r[0-9]+\.([0-9]+)", package_data) |
21 | self.assertTrue(find_pr, "No PKG revision found in %s" % package_data_file) | 24 | self.assertTrue(find_pr, "No PKG revision found in %s" % package_data_file) |