diff options
Diffstat (limited to 'meta/lib/oeqa/sdk/cases/buildepoxy.py')
| -rw-r--r-- | meta/lib/oeqa/sdk/cases/buildepoxy.py | 4 |
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 147ee3e0ee..5b9c36fcec 100644 --- a/meta/lib/oeqa/sdk/cases/buildepoxy.py +++ b/meta/lib/oeqa/sdk/cases/buildepoxy.py | |||
| @@ -18,6 +18,10 @@ class EpoxyTest(OESDKTestCase): | |||
| 18 | Test that Meson builds correctly. | 18 | Test that Meson builds correctly. |
| 19 | """ | 19 | """ |
| 20 | def setUp(self): | 20 | def setUp(self): |
| 21 | libc = self.td.get("TCLIBC") | ||
| 22 | if libc in [ 'newlib' ]: | ||
| 23 | raise unittest.SkipTest("MesonTest class: SDK doesn't contain a supported C library") | ||
| 24 | |||
| 21 | if not (self.tc.hasHostPackage("nativesdk-meson") or | 25 | if not (self.tc.hasHostPackage("nativesdk-meson") or |
| 22 | self.tc.hasHostPackage("meson-native")): | 26 | self.tc.hasHostPackage("meson-native")): |
| 23 | raise unittest.SkipTest("EpoxyTest class: SDK doesn't contain Meson") | 27 | raise unittest.SkipTest("EpoxyTest class: SDK doesn't contain Meson") |
