summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/reproducible.py
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-12-03 14:37:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-04-23 10:41:14 +0100
commitd685a71c238823274ee901a4adcedf6d39356d96 (patch)
treeeb324a89308b2b8c18929537d85177aa6612f952 /meta/lib/oeqa/selftest/cases/reproducible.py
parent13f4ddf50eccaeed96a40a5f1a1d4173e677e98a (diff)
downloadpoky-d685a71c238823274ee901a4adcedf6d39356d96.tar.gz
selftest/reproducible: enable world reproducibility test
Add systemd and pam distro features, and commercial license flag to include more recipes into the world set. (From OE-Core rev: 3e87a2bb2ee4db33e80b93a864d1153353fc12ad) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ed8f94942c07784f9f6eef5c00b75aa9b398ea5e) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/reproducible.py')
-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