mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
selftest/reproducible: Allow chose the package manager
This is a follow-up of 76e5fcb2 that also allow users to chose
the package manager using OEQA_REPRODUCIBLE_TEST_PACKAGE
(From OE-Core rev: 4402b746f49611abe71719dd1d174de79bb030bb)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3d414d85b44077bac57aba36707b0fc699a73e97)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
17110ad8f5
commit
934cbbc48e
@@ -126,7 +126,11 @@ class DiffoscopeTests(OESelftestTestCase):
|
||||
class ReproducibleTests(OESelftestTestCase):
|
||||
# Test the reproducibility of whatever is built between sstate_targets and targets
|
||||
|
||||
package_classes = ['deb', 'ipk', 'rpm']
|
||||
package_classes = get_bb_var("OEQA_REPRODUCIBLE_TEST_PACKAGE")
|
||||
if package_classes:
|
||||
package_classes = package_classes.split()
|
||||
else:
|
||||
package_classes = ['deb', 'ipk', 'rpm']
|
||||
|
||||
# Maximum report size, in bytes
|
||||
max_report_size = 250 * 1024 * 1024
|
||||
|
||||
Reference in New Issue
Block a user