]> 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)
committerSteve Sakoman <steve@sakoman.com>
Thu, 4 Mar 2021 14:19:49 +0000 (04:19 -1000)
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: Steve Sakoman <steve@sakoman.com>
meta/lib/oeqa/selftest/cases/reproducible.py

index 5d3959be77b692b4521ff2243ae05000bcc4d04d..d01a2665c235d4f40af31d8d5c3a5d10b428792d 100644 (file)
@@ -158,7 +158,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)