From 13aa6449c47980c7270dad2527c3911517bf34e6 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Fri, 18 Jun 2021 11:56:50 -0700 Subject: [PATCH] test_ctypes.test_find: skip without tools-sdk These tests need full packagegroup-core-buildessential, the easiest way to dynamically check for that is looking for 'tools-sdk' in IMAGE_FEATURES. Upstream-Status: Inappropriate [oe-specific] Signed-off-by: Tim Orling --- Lib/ctypes/test/test_find.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/ctypes/test/test_find.py b/Lib/ctypes/test/test_find.py index 1ff9d01..59def26 100644 --- a/Lib/ctypes/test/test_find.py +++ b/Lib/ctypes/test/test_find.py @@ -113,10 +113,12 @@ class FindLibraryLinux(unittest.TestCase): # LD_LIBRARY_PATH) self.assertEqual(find_library(libname), 'lib%s.so' % libname) + @unittest.skip("Needs IMAGE_FEATURE += \"tools-sdk\"") def test_find_library_with_gcc(self): with unittest.mock.patch("ctypes.util._findSoname_ldconfig", lambda *args: None): self.assertNotEqual(find_library('c'), None) + @unittest.skip("Needs IMAGE_FEATURE += \"tools-sdk\"") def test_find_library_with_ld(self): with unittest.mock.patch("ctypes.util._findSoname_ldconfig", lambda *args: None), \ unittest.mock.patch("ctypes.util._findLib_gcc", lambda *args: None):