summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/reproducible.py
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2021-02-14 13:12:41 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-04 17:39:08 +0000
commit790949cec9962c1133d7086afb2c8806d43f6273 (patch)
tree46986c912c89d92ea49fc52b0d95f514dcdeb0a7 /meta/lib/oeqa/selftest/cases/reproducible.py
parente704ef0f2a628a5c8df1dfebc9d75572ffa98fc6 (diff)
downloadpoky-790949cec9962c1133d7086afb2c8806d43f6273.tar.gz
oeqa: reproducible: Fix SSTATE_MIRRORS variable
The SSTATE_MIRRORS variable was misspelled, which allowed the "clean" test build to pull from the mirror. (From OE-Core rev: f81fa4cf7ff1e48f7499f2cb5e2c7d7f9ea438be) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit e42497bd84d0bb370a9f7b0448bff29f01fd1b0c) 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.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 5d3959be77..d01a2665c2 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -158,7 +158,7 @@ class ReproducibleTests(OESelftestTestCase):
158 # mirror, forcing a complete build from scratch 158 # mirror, forcing a complete build from scratch
159 config += textwrap.dedent('''\ 159 config += textwrap.dedent('''\
160 SSTATE_DIR = "${TMPDIR}/sstate" 160 SSTATE_DIR = "${TMPDIR}/sstate"
161 SSTATE_MIRROR = "" 161 SSTATE_MIRRORS = ""
162 ''') 162 ''')
163 163
164 self.write_config(config) 164 self.write_config(config)