summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index e9447a2a92..0f7e6eb376 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -128,7 +128,11 @@ class DiffoscopeTests(OESelftestTestCase):
128class ReproducibleTests(OESelftestTestCase): 128class ReproducibleTests(OESelftestTestCase):
129 # Test the reproducibility of whatever is built between sstate_targets and targets 129 # Test the reproducibility of whatever is built between sstate_targets and targets
130 130
131 package_classes = ['deb', 'ipk', 'rpm'] 131 package_classes = get_bb_var("OEQA_REPRODUCIBLE_TEST_PACKAGE")
132 if package_classes:
133 package_classes = package_classes.split()
134 else:
135 package_classes = ['deb', 'ipk', 'rpm']
132 136
133 # Maximum report size, in bytes 137 # Maximum report size, in bytes
134 max_report_size = 250 * 1024 * 1024 138 max_report_size = 250 * 1024 * 1024