diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/ksample.py')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/ksample.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ksample.py b/meta/lib/oeqa/runtime/cases/ksample.py index 26fbe9d8cb..eb8713351a 100644 --- a/meta/lib/oeqa/runtime/cases/ksample.py +++ b/meta/lib/oeqa/runtime/cases/ksample.py | |||
@@ -164,6 +164,11 @@ class KSampleTest(KSample): | |||
164 | # hw breakpoint | 164 | # hw breakpoint |
165 | @OETestDepends(['ssh.SSHTest.test_ssh']) | 165 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
166 | def test_hw_breakpoint_example(self): | 166 | def test_hw_breakpoint_example(self): |
167 | # check arch | ||
168 | status, output = self.target.run("uname -m") | ||
169 | result = ("x86" in output) or ("aarch64" in output) | ||
170 | if not result: | ||
171 | self.skipTest("the arch doesn't support hw breakpoint" % output) | ||
167 | # check config | 172 | # check config |
168 | self.check_config("CONFIG_KALLSYMS_ALL") | 173 | self.check_config("CONFIG_KALLSYMS_ALL") |
169 | # make sure if module exists | 174 | # make sure if module exists |