mirror of
https://git.yoctoproject.org/poky
synced 2026-04-19 06:32:13 +02:00
oeqa/sstate: Fix allarch samesigs test
The allarch sstate sigs test is supposed to compare the allarch sigs but does not. Fix this. Also rename the common function to make it clear it isn't just used by the allarch test. (From OE-Core rev: 549597d422c7bcb467f34139ff25d2bee96bf851) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -350,7 +350,7 @@ MACHINE = \"qemuarm\"
|
||||
OLDEST_KERNEL = \"3.3.0\"
|
||||
BB_SIGNATURE_HANDLER = "OEBasicHash"
|
||||
"""
|
||||
self.sstate_allarch_samesigs(configA, configB)
|
||||
self.sstate_common_samesigs(configA, configB, allarch=True)
|
||||
|
||||
def test_sstate_nativesdk_samesigs_multilib(self):
|
||||
"""
|
||||
@@ -374,9 +374,9 @@ require conf/multilib.conf
|
||||
MULTILIBS = \"\"
|
||||
BB_SIGNATURE_HANDLER = "OEBasicHash"
|
||||
"""
|
||||
self.sstate_allarch_samesigs(configA, configB)
|
||||
self.sstate_common_samesigs(configA, configB)
|
||||
|
||||
def sstate_allarch_samesigs(self, configA, configB):
|
||||
def sstate_common_samesigs(self, configA, configB, allarch=False):
|
||||
|
||||
self.write_config(configA)
|
||||
self.track_for_cleanup(self.topdir + "/tmp-sstatesamehash")
|
||||
@@ -404,6 +404,13 @@ BB_SIGNATURE_HANDLER = "OEBasicHash"
|
||||
self.maxDiff = None
|
||||
self.assertEqual(files1, files2)
|
||||
|
||||
if allarch:
|
||||
allarchdir = os.path.basename(glob.glob(self.topdir + "/tmp-sstatesamehash/stamps/all-*-linux")[0])
|
||||
|
||||
files1 = get_files(self.topdir + "/tmp-sstatesamehash/stamps/" + allarchdir)
|
||||
files2 = get_files(self.topdir + "/tmp-sstatesamehash2/stamps/" + allarchdir)
|
||||
self.assertEqual(files1, files2)
|
||||
|
||||
def test_sstate_sametune_samesigs(self):
|
||||
"""
|
||||
The sstate checksums of two identical machines (using the same tune) should be the
|
||||
|
||||
Reference in New Issue
Block a user