]> 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)
committerAnuj Mittal <anuj.mittal@intel.com>
Thu, 18 Feb 2021 04:01:27 +0000 (12:01 +0800)
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>
(cherry picked from commit e42497bd84d0bb370a9f7b0448bff29f01fd1b0c)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
meta/lib/oeqa/selftest/cases/reproducible.py

index a7ef336143be2bfa7a352e753e3a8314288ccdd2..2d675f1771cdf6cb1ab9c5832fc0d04a93ef4211 100644 (file)
@@ -184,7 +184,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)