xref: /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/rt.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#
2# SPDX-License-Identifier: MIT
3#
4
5from oeqa.runtime.case import OERuntimeTestCase
6from oeqa.core.decorator.depends import OETestDepends
7
8class RtTest(OERuntimeTestCase):
9    @OETestDepends(['ssh.SSHTest.test_ssh'])
10    def test_is_rt(self):
11        """
12        Check that the kernel has CONFIG_PREEMPT_RT enabled.
13        """
14        status, output = self.target.run("uname -a")
15        self.assertEqual(status, 0, msg=output)
16        # Split so we don't get a substring false-positive
17        self.assertIn("PREEMPT_RT", output.split())
18