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/pkgdata.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/pkgdata.py')
-rw-r--r-- | meta/lib/oeqa/selftest/pkgdata.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/meta/lib/oeqa/selftest/pkgdata.py b/meta/lib/oeqa/selftest/pkgdata.py index 3512ce3531..36d8b346d0 100644 --- a/meta/lib/oeqa/selftest/pkgdata.py +++ b/meta/lib/oeqa/selftest/pkgdata.py | |||
@@ -6,7 +6,7 @@ import fnmatch | |||
6 | 6 | ||
7 | import oeqa.utils.ftools as ftools | 7 | import oeqa.utils.ftools as ftools |
8 | from oeqa.selftest.base import oeSelfTest | 8 | from oeqa.selftest.base import oeSelfTest |
9 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var | 9 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_bb_vars |
10 | from oeqa.utils.decorators import testcase | 10 | from oeqa.utils.decorators import testcase |
11 | 11 | ||
12 | class OePkgdataUtilTests(oeSelfTest): | 12 | class OePkgdataUtilTests(oeSelfTest): |
@@ -126,10 +126,11 @@ class OePkgdataUtilTests(oeSelfTest): | |||
126 | curpkg = line.split(':')[0] | 126 | curpkg = line.split(':')[0] |
127 | files[curpkg] = [] | 127 | files[curpkg] = [] |
128 | return files | 128 | return files |
129 | base_libdir = get_bb_var('base_libdir') | 129 | bb_vars = get_bb_vars(['base_libdir', 'libdir', 'includedir', 'mandir']) |
130 | libdir = get_bb_var('libdir') | 130 | base_libdir = bb_vars['base_libdir'] |
131 | includedir = get_bb_var('includedir') | 131 | libdir = bb_vars['libdir'] |
132 | mandir = get_bb_var('mandir') | 132 | includedir = bb_vars['includedir'] |
133 | mandir = bb_vars['mandir'] | ||
133 | # Test recipe-space package name | 134 | # Test recipe-space package name |
134 | result = runCmd('oe-pkgdata-util list-pkg-files zlib-dev zlib-doc') | 135 | result = runCmd('oe-pkgdata-util list-pkg-files zlib-dev zlib-doc') |
135 | files = splitoutput(result.output) | 136 | files = splitoutput(result.output) |