summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/cases/kmod.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/sdk/cases/kmod.py')
-rw-r--r--meta/lib/oeqa/sdk/cases/kmod.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oeqa/sdk/cases/kmod.py b/meta/lib/oeqa/sdk/cases/kmod.py
index af9fcf5150..0aa6f702e4 100644
--- a/meta/lib/oeqa/sdk/cases/kmod.py
+++ b/meta/lib/oeqa/sdk/cases/kmod.py
@@ -9,6 +9,7 @@ import subprocess
9import tempfile 9import tempfile
10 10
11from oeqa.sdk.case import OESDKTestCase 11from oeqa.sdk.case import OESDKTestCase
12from oeqa.sdkext.context import OESDKExtTestContext
12from oeqa.utils.subprocesstweak import errors_have_output 13from oeqa.utils.subprocesstweak import errors_have_output
13errors_have_output() 14errors_have_output()
14 15
@@ -17,6 +18,9 @@ class KernelModuleTest(OESDKTestCase):
17 Test that out-of-tree kernel modules build. 18 Test that out-of-tree kernel modules build.
18 """ 19 """
19 def test_cryptodev(self): 20 def test_cryptodev(self):
21 if isinstance(self.tc, OESDKExtTestContext):
22 self.skipTest(f"{self.id()} does not support eSDK (https://bugzilla.yoctoproject.org/show_bug.cgi?id=15850)")
23
20 self.ensure_target_package("kernel-devsrc") 24 self.ensure_target_package("kernel-devsrc")
21 # These targets need to be built before kernel modules can be built. 25 # These targets need to be built before kernel modules can be built.
22 self._run("make -j -C $OECORE_TARGET_SYSROOT/usr/src/kernel prepare scripts") 26 self._run("make -j -C $OECORE_TARGET_SYSROOT/usr/src/kernel prepare scripts")