summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-01-16 12:08:14 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-19 12:21:22 +0000
commit78e30d940d1a931c65a14d864494d92f0889035e (patch)
tree32e87ef22610ef937dd5e1b9a604d0deacf39107 /meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch
parent375ac472d848eb6bdd17656cfe005c905025ffab (diff)
downloadpoky-78e30d940d1a931c65a14d864494d92f0889035e.tar.gz
python: update 3.11.5 -> 3.12.1
Drop distutils and smtpd modules from packaging, as both are gone in 3.12. Rebase: 0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch (drop setup.py chunk as the file is gone) Drop patches: 0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch (setup.py gone, lib/termcap not mentioned anywhere else) 0001-Don-t-search-system-for-headers-libraries.patch (setup.py gone, usr/lib64 not mentioned anywhere else) 0001-Makefile-do-not-compile-.pyc-in-parallel.patch (replaced with COMPILEALL_OPTS= in EXTRA_OEMAKE) 0001-setup.py-Do-not-detect-multiarch-paths-when-cross-co.patch (setup.py gone, add_multiarch_paths not mentioned anywhere else) 0017-setup.py-do-not-report-missing-dependencies-for-disa.patch (has been superseded by Setup.local tweak in do_configure:prepend) 12-distutils-prefix-is-inside-staging-area.patch (distutils has been removed upstream, so this old, unplesant hack can be finally dropped) avoid_warning_about_tkinter.patch (setup.py gone, tkinter detection logic performed in configure.ac) (From OE-Core rev: 716d82352545d3667a658b69d65d6127678dd150) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch')
-rw-r--r--meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch24
1 files changed, 11 insertions, 13 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch b/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch
index a7d37266ef..edb85395ff 100644
--- a/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch
+++ b/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch
@@ -1,4 +1,4 @@
1From 0c8002d12149fdfbbcd9a9215876d474f157eb9c Mon Sep 17 00:00:00 2001 1From bafdd769330c9d49a066fb1427f451b8d253262d Mon Sep 17 00:00:00 2001
2From: Yi Fan Yu <yifan.yu@windriver.com> 2From: Yi Fan Yu <yifan.yu@windriver.com>
3Date: Thu, 1 Apr 2021 13:08:37 -0700 3Date: Thu, 1 Apr 2021 13:08:37 -0700
4Subject: [PATCH] Skip failing tests due to load variability on YP AB 4Subject: [PATCH] Skip failing tests due to load variability on YP AB
@@ -17,24 +17,25 @@ Skip two additional tests due to suspected load variability failures.
17[YOCTO #15177] 17[YOCTO #15177]
18 18
19Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> 19Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
20
20--- 21---
21 Lib/test/_test_multiprocessing.py | 3 +++ 22 Lib/test/_test_multiprocessing.py | 3 +++
22 Lib/test/test_time.py | 2 ++ 23 Lib/test/test_time.py | 2 ++
23 2 files changed, 5 insertions(+) 24 2 files changed, 5 insertions(+)
24 25
25diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py 26diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
26index b50a154320..b8b2c4204d 100644 27index d52b10c..5f0e4e3 100644
27--- a/Lib/test/_test_multiprocessing.py 28--- a/Lib/test/_test_multiprocessing.py
28+++ b/Lib/test/_test_multiprocessing.py 29+++ b/Lib/test/_test_multiprocessing.py
29@@ -618,6 +618,7 @@ def test_close(self): 30@@ -682,6 +682,7 @@ class _TestProcess(BaseTestCase):
30
31 close_queue(q) 31 close_queue(q)
32 32
33 @support.requires_resource('walltime')
33+ @unittest.skip('timing related test, dependent on load') 34+ @unittest.skip('timing related test, dependent on load')
34 def test_many_processes(self): 35 def test_many_processes(self):
35 if self.TYPE == 'threads': 36 if self.TYPE == 'threads':
36 self.skipTest('test not appropriate for {}'.format(self.TYPE)) 37 self.skipTest('test not appropriate for {}'.format(self.TYPE))
37@@ -2003,6 +2004,7 @@ def _test_timeout_f(cls, barrier, results): 38@@ -2066,6 +2067,7 @@ class _TestBarrier(BaseTestCase):
38 except threading.BrokenBarrierError: 39 except threading.BrokenBarrierError:
39 results.append(True) 40 results.append(True)
40 41
@@ -42,19 +43,19 @@ index b50a154320..b8b2c4204d 100644
42 def test_timeout(self): 43 def test_timeout(self):
43 """ 44 """
44 Test wait(timeout) 45 Test wait(timeout)
45@@ -4890,6 +4892,7 @@ def signal_and_sleep(cls, sem, period): 46@@ -4992,6 +4994,7 @@ class TestWait(unittest.TestCase):
46 sem.release()
47 time.sleep(period) 47 time.sleep(period)
48 48
49 @support.requires_resource('walltime')
49+ @unittest.skip('timing related test, dependent on load') 50+ @unittest.skip('timing related test, dependent on load')
50 def test_wait_integer(self): 51 def test_wait_integer(self):
51 from multiprocessing.connection import wait 52 from multiprocessing.connection import wait
52 53
53diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py 54diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
54index 884b14231f..8f0638c0d7 100644 55index 02cc3f4..51a4548 100644
55--- a/Lib/test/test_time.py 56--- a/Lib/test/test_time.py
56+++ b/Lib/test/test_time.py 57+++ b/Lib/test/test_time.py
57@@ -492,6 +492,7 @@ def test_perf_counter(self): 58@@ -492,6 +492,7 @@ class TimeTestCase(unittest.TestCase):
58 @unittest.skipIf( 59 @unittest.skipIf(
59 support.is_wasi, "process_time not available on WASI" 60 support.is_wasi, "process_time not available on WASI"
60 ) 61 )
@@ -62,7 +63,7 @@ index 884b14231f..8f0638c0d7 100644
62 def test_process_time(self): 63 def test_process_time(self):
63 # process_time() should not include time spend during a sleep 64 # process_time() should not include time spend during a sleep
64 start = time.process_time() 65 start = time.process_time()
65@@ -505,6 +506,7 @@ def test_process_time(self): 66@@ -505,6 +506,7 @@ class TimeTestCase(unittest.TestCase):
66 self.assertTrue(info.monotonic) 67 self.assertTrue(info.monotonic)
67 self.assertFalse(info.adjustable) 68 self.assertFalse(info.adjustable)
68 69
@@ -70,6 +71,3 @@ index 884b14231f..8f0638c0d7 100644
70 def test_thread_time(self): 71 def test_thread_time(self):
71 if not hasattr(time, 'thread_time'): 72 if not hasattr(time, 'thread_time'):
72 if sys.platform.startswith(('linux', 'win')): 73 if sys.platform.startswith(('linux', 'win')):
73--
742.41.0
75