summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2021-02-16 19:28:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-17 11:01:17 +0000
commit35fb71f38fc3070477bf125030b853c2bccd9f48 (patch)
treea9e22407fa93ba1715c8a72a601dcd6f56baf8fd /meta/lib
parentf45877b2082d6d7e94dc10a70d470ba82e342cee (diff)
downloadpoky-35fb71f38fc3070477bf125030b853c2bccd9f48.tar.gz
oe-selftests: add rpm to reproducible build selftest
rpm packaging has shown good numbers wrt reproducible builds as well when testing core-image-minimal locally: Reproducibility summary for rpm: same=4671 different=0 missing=0 total=4671 Thus enable it in the autobuilder to be more widely tested. (From OE-Core rev: 84d3a90557444d8cd83d780b1c3f2b278ab07af2) Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index 0963c2f11a..9785c5ffac 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -173,7 +173,7 @@ class DiffoscopeTests(OESelftestTestCase):
173 self.assertTrue(os.path.exists(os.path.join(tmpdir, 'index.html')), "HTML index not found!") 173 self.assertTrue(os.path.exists(os.path.join(tmpdir, 'index.html')), "HTML index not found!")
174 174
175class ReproducibleTests(OESelftestTestCase): 175class ReproducibleTests(OESelftestTestCase):
176 package_classes = ['deb', 'ipk'] 176 package_classes = ['deb', 'ipk', 'rpm']
177 images = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'world'] 177 images = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'world']
178 save_results = False 178 save_results = False
179 if 'OEQA_DEBUGGING_SAVED_OUTPUT' in os.environ: 179 if 'OEQA_DEBUGGING_SAVED_OUTPUT' in os.environ: