summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index f570958f80..4b60b2e1b0 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -83,7 +83,7 @@ class ReproducibleTests(OESelftestTestCase):
83 package_classes = ['deb', 'ipk'] 83 package_classes = ['deb', 'ipk']
84 84
85 # targets are the things we want to test the reproducibility of 85 # targets are the things we want to test the reproducibility of
86 targets = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline'] 86 targets = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'world']
87 # sstate targets are things to pull from sstate to potentially cut build/debugging time 87 # sstate targets are things to pull from sstate to potentially cut build/debugging time
88 sstate_targets = [] 88 sstate_targets = []
89 save_results = False 89 save_results = False
@@ -156,6 +156,8 @@ class ReproducibleTests(OESelftestTestCase):
156 PACKAGE_CLASSES = "{package_classes}" 156 PACKAGE_CLASSES = "{package_classes}"
157 INHIBIT_PACKAGE_STRIP = "1" 157 INHIBIT_PACKAGE_STRIP = "1"
158 TMPDIR = "{tmpdir}" 158 TMPDIR = "{tmpdir}"
159 LICENSE_FLAGS_WHITELIST = "commercial"
160 DISTRO_FEATURES_append = ' systemd pam'
159 ''').format(package_classes=' '.join('package_%s' % c for c in self.package_classes), 161 ''').format(package_classes=' '.join('package_%s' % c for c in self.package_classes),
160 tmpdir=tmpdir) 162 tmpdir=tmpdir)
161 163