xref: /openbmc/openbmc/meta-arm/meta-arm/lib/oeqa/selftest/cases/pacbti.py (revision da295319aa739dfa657fb4a1ba7e81804ba48658)
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