1from oeqa.selftest.case import OESelftestTestCase 2from oeqa.core.decorator import OETestTag 3from oeqa.core.decorator.data import skipIfNotArch 4from oeqa.utils.commands import bitbake 5 6@OETestTag("meta-arm") 7class PacBtiTest(OESelftestTestCase): 8 9 @skipIfNotArch(["aarch64"]) 10 def test_pac_bti(self): 11 bitbake("test-pacbti") 12