diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-10 13:49:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-11 15:48:11 +0000 |
commit | 9d4dd141bf5bfed0f1d5e3a4ce094d45c8921d00 (patch) | |
tree | 7873540e311f4cc53dc79ca49ea073a085be80c1 /meta/lib | |
parent | ce0d3b748b13f8ab56d54008358a910a901313ed (diff) | |
download | poky-9d4dd141bf5bfed0f1d5e3a4ce094d45c8921d00.tar.gz |
sstatetests: Add OLDEST_KERNEL to allarch tests
Some architectures vary OLDEST_KERNEL and this shouldn't change the allarch
signatures but in current OE-Core can/does. Add differing values to the
test configs to ensure we catch this in future (we want to keep a 32 and
64 bit machine here to test that as well).
(From OE-Core rev: 151ce55ec8ebc91b83bf0d09b9196f11646df1f1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/sstatetests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/sstatetests.py b/meta/lib/oeqa/selftest/cases/sstatetests.py index 2be96f1781..70ef10cda5 100644 --- a/meta/lib/oeqa/selftest/cases/sstatetests.py +++ b/meta/lib/oeqa/selftest/cases/sstatetests.py | |||
@@ -342,10 +342,12 @@ TCLIBCAPPEND = \"\" | |||
342 | MACHINE = \"qemux86-64\" | 342 | MACHINE = \"qemux86-64\" |
343 | BB_SIGNATURE_HANDLER = "OEBasicHash" | 343 | BB_SIGNATURE_HANDLER = "OEBasicHash" |
344 | """ | 344 | """ |
345 | #OLDEST_KERNEL is arch specific so set to a different value here for testing | ||
345 | configB = """ | 346 | configB = """ |
346 | TMPDIR = \"${TOPDIR}/tmp-sstatesamehash2\" | 347 | TMPDIR = \"${TOPDIR}/tmp-sstatesamehash2\" |
347 | TCLIBCAPPEND = \"\" | 348 | TCLIBCAPPEND = \"\" |
348 | MACHINE = \"qemuarm\" | 349 | MACHINE = \"qemuarm\" |
350 | OLDEST_KERNEL = \"3.3.0\" | ||
349 | BB_SIGNATURE_HANDLER = "OEBasicHash" | 351 | BB_SIGNATURE_HANDLER = "OEBasicHash" |
350 | """ | 352 | """ |
351 | self.sstate_allarch_samesigs(configA, configB) | 353 | self.sstate_allarch_samesigs(configA, configB) |