mirror of
git://git.yoctoproject.org/poky
synced 2026-08-11 17:18:52 +00: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: 3d414d85b44077bac57aba36707b0fc699a73e97) Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
5c6419bec6
commit
88abdec715
@ -128,7 +128,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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user