| Message ID | 20260731094620.609767-1-richard.purdie@linuxfoundation.org |
|---|---|
| State | Under Review |
| Headers | show |
| Series | oeqa/selftest/sstatetests: Work around the removal of i686 uninative | expand |
diff --git a/meta/lib/oeqa/selftest/cases/sstatetests.py b/meta/lib/oeqa/selftest/cases/sstatetests.py index 02fd45fe0d9..5da8caf1c39 100644 --- a/meta/lib/oeqa/selftest/cases/sstatetests.py +++ b/meta/lib/oeqa/selftest/cases/sstatetests.py @@ -375,6 +375,9 @@ TMPDIR = "${TOPDIR}/tmp-sstatesamehash2" BUILD_ARCH = "i686" BUILD_OS = "linux" SDKMACHINE = "%s" +# We dropped i686 build host support but the test is still useful, work around it +UNINATIVE_VERSION:forcevariable = "5.1" +UNINATIVE_CHECKSUM[i686] = "761502cc9aef4d54d0c6fe9418beb9fdd2c6220da6f2b04128c89f47902ab9ae" PACKAGE_CLASSES = "package_rpm package_ipk package_deb" BB_SIGNATURE_HANDLER = "OEBasicHash" """ % sdkmachine)
Uninative 5.2 is the first version with no i686 support. The tests comparing different kinds of sstate are still useful and we really want uninative in those tests too, so work around the issue by having i686 refer to the last release for the test. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta/lib/oeqa/selftest/cases/sstatetests.py | 3 +++ 1 file changed, 3 insertions(+)