summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/0001-test_ctypes.test_find-skip-without-tools-sdk.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-test_ctypes.test_find-skip-without-tools-sdk.patch')
-rw-r--r--meta/recipes-devtools/python/python3/0001-test_ctypes.test_find-skip-without-tools-sdk.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-test_ctypes.test_find-skip-without-tools-sdk.patch b/meta/recipes-devtools/python/python3/0001-test_ctypes.test_find-skip-without-tools-sdk.patch
new file mode 100644
index 0000000000..b4fe946cba
--- /dev/null
+++ b/meta/recipes-devtools/python/python3/0001-test_ctypes.test_find-skip-without-tools-sdk.patch
@@ -0,0 +1,34 @@
1From b64c131a576a4b4f821514e711ab91b1394fb4ff Mon Sep 17 00:00:00 2001
2From: 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.orling@intel.com>
13
14---
15 Lib/test/test_ctypes/test_find.py | 2 ++
16 1 file changed, 2 insertions(+)
17
18diff --git a/Lib/test/test_ctypes/test_find.py b/Lib/test/test_ctypes/test_find.py
19index 1ff9d01..59def26 100644
20--- a/Lib/test/test_ctypes/test_find.py
21+++ b/Lib/test/test_ctypes/test_find.py
22@@ -113,10 +113,12 @@ class FindLibraryLinux(unittest.TestCase):
23 # 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):