summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index 5042c11d8e..2c9bc0bf90 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -149,7 +149,7 @@ class ReproducibleTests(OESelftestTestCase):
149 149
150 def setUpLocal(self): 150 def setUpLocal(self):
151 super().setUpLocal() 151 super().setUpLocal()
152 needed_vars = ['TOPDIR', 'TARGET_PREFIX', 'BB_NUMBER_THREADS'] 152 needed_vars = ['TOPDIR', 'TARGET_PREFIX', 'BB_NUMBER_THREADS', 'BB_HASHSERVE']
153 bb_vars = get_bb_vars(needed_vars) 153 bb_vars = get_bb_vars(needed_vars)
154 for v in needed_vars: 154 for v in needed_vars:
155 setattr(self, v.lower(), bb_vars[v]) 155 setattr(self, v.lower(), bb_vars[v])
@@ -223,7 +223,7 @@ class ReproducibleTests(OESelftestTestCase):
223 # mirror, forcing a complete build from scratch 223 # mirror, forcing a complete build from scratch
224 config += textwrap.dedent('''\ 224 config += textwrap.dedent('''\
225 SSTATE_DIR = "${TMPDIR}/sstate" 225 SSTATE_DIR = "${TMPDIR}/sstate"
226 SSTATE_MIRRORS = "" 226 SSTATE_MIRRORS = "file://.*/.*-native.* http://sstate.yoctoproject.org/all/PATH;downloadfilename=PATH file://.*/.*-cross.* http://sstate.yoctoproject.org/all/PATH;downloadfilename=PATH"
227 ''') 227 ''')
228 228
229 self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT')) 229 self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT'))