summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/sdk/cases/buildepoxy.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oeqa/sdk/cases/buildepoxy.py b/meta/lib/oeqa/sdk/cases/buildepoxy.py
index 5b9c36fcec..2f21210c79 100644
--- a/meta/lib/oeqa/sdk/cases/buildepoxy.py
+++ b/meta/lib/oeqa/sdk/cases/buildepoxy.py
@@ -10,6 +10,7 @@ import tempfile
10import unittest 10import unittest
11 11
12from oeqa.sdk.case import OESDKTestCase 12from oeqa.sdk.case import OESDKTestCase
13from oeqa.sdkext.context import OESDKExtTestContext
13from oeqa.utils.subprocesstweak import errors_have_output 14from oeqa.utils.subprocesstweak import errors_have_output
14errors_have_output() 15errors_have_output()
15 16
@@ -22,6 +23,9 @@ class EpoxyTest(OESDKTestCase):
22 if libc in [ 'newlib' ]: 23 if libc in [ 'newlib' ]:
23 raise unittest.SkipTest("MesonTest class: SDK doesn't contain a supported C library") 24 raise unittest.SkipTest("MesonTest class: SDK doesn't contain a supported C library")
24 25
26 if isinstance(self.tc, OESDKExtTestContext):
27 self.skipTest(f"{self.id()} does not support eSDK (https://bugzilla.yoctoproject.org/show_bug.cgi?id=15854)")
28
25 if not (self.tc.hasHostPackage("nativesdk-meson") or 29 if not (self.tc.hasHostPackage("nativesdk-meson") or
26 self.tc.hasHostPackage("meson-native")): 30 self.tc.hasHostPackage("meson-native")):
27 raise unittest.SkipTest("EpoxyTest class: SDK doesn't contain Meson") 31 raise unittest.SkipTest("EpoxyTest class: SDK doesn't contain Meson")