blob: 371021c0a97c4875af8cad01072bb5a5f68e0289 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From 13aa6449c47980c7270dad2527c3911517bf34e6 Mon Sep 17 00:00:00 2001
Andrew Geissler09036742021-06-25 14:25:14 -05002From: Tim Orling <timothy.t.orling@intel.com>
3Date: Fri, 18 Jun 2021 11:56:50 -0700
4Subject: [PATCH] test_ctypes.test_find: skip without tools-sdk
5
6These tests need full packagegroup-core-buildessential, the
7easiest way to dynamically check for that is looking for
8'tools-sdk' in IMAGE_FEATURES.
9
10Upstream-Status: Inappropriate [oe-specific]
11
12Signed-off-by: Tim Orling <timothy.t.orlign@intel.com>
Andrew Geissler595f6302022-01-24 19:11:47 +000013
Andrew Geissler09036742021-06-25 14:25:14 -050014---
15 Lib/ctypes/test/test_find.py | 2 ++
16 1 file changed, 2 insertions(+)
17
18diff --git a/Lib/ctypes/test/test_find.py b/Lib/ctypes/test/test_find.py
Andrew Geissler595f6302022-01-24 19:11:47 +000019index 1ff9d01..59def26 100644
Andrew Geissler09036742021-06-25 14:25:14 -050020--- a/Lib/ctypes/test/test_find.py
21+++ b/Lib/ctypes/test/test_find.py
Andrew Geissler595f6302022-01-24 19:11:47 +000022@@ -113,10 +113,12 @@ class FindLibraryLinux(unittest.TestCase):
Andrew Geissler09036742021-06-25 14:25:14 -050023 # LD_LIBRARY_PATH)
24 self.assertEqual(find_library(libname), 'lib%s.so' % libname)
25
26+ @unittest.skip("Needs IMAGE_FEATURE += \"tools-sdk\"")
27 def test_find_library_with_gcc(self):
28 with unittest.mock.patch("ctypes.util._findSoname_ldconfig", lambda *args: None):
29 self.assertNotEqual(find_library('c'), None)
30
31+ @unittest.skip("Needs IMAGE_FEATURE += \"tools-sdk\"")
32 def test_find_library_with_ld(self):
33 with unittest.mock.patch("ctypes.util._findSoname_ldconfig", lambda *args: None), \
34 unittest.mock.patch("ctypes.util._findLib_gcc", lambda *args: None):