]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa: reproducible: Fix SSTATE_MIRRORS variable
authorJoshua Watt <JPEWhacker@gmail.com>
Sun, 14 Feb 2021 19:12:41 +0000 (13:12 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 16 Feb 2021 11:28:01 +0000 (11:28 +0000)
The SSTATE_MIRRORS variable was misspelled, which allowed the "clean"
test build to pull from the mirror.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/reproducible.py

index cb4c59ca6fa6ce40583ec37b14fead45fd50ddb8..7bc578a20f3e1e4a819b9a79af4a075b5df5f3ab 100644 (file)
@@ -258,7 +258,7 @@ class ReproducibleTests(OESelftestTestCase):
             # mirror, forcing a complete build from scratch
             config += textwrap.dedent('''\
                 SSTATE_DIR = "${TMPDIR}/sstate"
-                SSTATE_MIRROR = ""
+                SSTATE_MIRRORS = ""
                 ''')
 
         self.write_config(config)