summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2021-02-20 18:29:34 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-26 15:21:20 +0000
commit730ea923ac3f2265418e92eb0de424931bed1ba4 (patch)
treea7d4301b58db2f432c46dd18bd7242237e576463 /meta
parent17ccaab9a5092aeb3c7af5cf5f2b04c963880632 (diff)
downloadpoky-730ea923ac3f2265418e92eb0de424931bed1ba4.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) (From OE-Core rev: 85b9dd01f2e1d5429f8da0c48a25ec034acebf67) Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 e54230f853..3bf8c29e51 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -168,7 +168,7 @@ class DiffoscopeTests(OESelftestTestCase):
168 self.assertTrue(os.path.exists(os.path.join(tmpdir, 'index.html')), "HTML index not found!") 168 self.assertTrue(os.path.exists(os.path.join(tmpdir, 'index.html')), "HTML index not found!")
169 169
170class ReproducibleTests(OESelftestTestCase): 170class ReproducibleTests(OESelftestTestCase):
171 package_classes = ['deb', 'ipk'] 171 package_classes = ['deb', 'ipk', 'rpm']
172 images = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'world'] 172 images = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'world']
173 save_results = False 173 save_results = False
174 if 'OEQA_DEBUGGING_SAVED_OUTPUT' in os.environ: 174 if 'OEQA_DEBUGGING_SAVED_OUTPUT' in os.environ: