summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r--meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch43
1 files changed, 34 insertions, 9 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 61dd4a5bc0..a7d37266ef 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 01e02fb4720ecbbc44c694ee1b7fb6d5d95b5fe2 Mon Sep 17 00:00:00 2001 1From 0c8002d12149fdfbbcd9a9215876d474f157eb9c 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
@@ -11,16 +11,22 @@ Upstream-Status: Inappropriate [OE-Specific]
11 11
12Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com> 12Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>
13 13
14Skip two additional tests due to suspected load variability failures.
15
16[YOCTO #15131]
17[YOCTO #15177]
18
19Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
14--- 20---
15 Lib/test/_test_multiprocessing.py | 2 ++ 21 Lib/test/_test_multiprocessing.py | 3 +++
16 Lib/test/test_time.py | 1 + 22 Lib/test/test_time.py | 2 ++
17 2 files changed, 3 insertions(+) 23 2 files changed, 5 insertions(+)
18 24
19diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py 25diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
20index 599c3f2..23328be 100644 26index b50a154320..b8b2c4204d 100644
21--- a/Lib/test/_test_multiprocessing.py 27--- a/Lib/test/_test_multiprocessing.py
22+++ b/Lib/test/_test_multiprocessing.py 28+++ b/Lib/test/_test_multiprocessing.py
23@@ -618,6 +618,7 @@ class _TestProcess(BaseTestCase): 29@@ -618,6 +618,7 @@ def test_close(self):
24 30
25 close_queue(q) 31 close_queue(q)
26 32
@@ -28,7 +34,15 @@ index 599c3f2..23328be 100644
28 def test_many_processes(self): 34 def test_many_processes(self):
29 if self.TYPE == 'threads': 35 if self.TYPE == 'threads':
30 self.skipTest('test not appropriate for {}'.format(self.TYPE)) 36 self.skipTest('test not appropriate for {}'.format(self.TYPE))
31@@ -4890,6 +4891,7 @@ class TestWait(unittest.TestCase): 37@@ -2003,6 +2004,7 @@ def _test_timeout_f(cls, barrier, results):
38 except threading.BrokenBarrierError:
39 results.append(True)
40
41+ @unittest.skip('timing related test, dependent on load')
42 def test_timeout(self):
43 """
44 Test wait(timeout)
45@@ -4890,6 +4892,7 @@ def signal_and_sleep(cls, sem, period):
32 sem.release() 46 sem.release()
33 time.sleep(period) 47 time.sleep(period)
34 48
@@ -37,10 +51,10 @@ index 599c3f2..23328be 100644
37 from multiprocessing.connection import wait 51 from multiprocessing.connection import wait
38 52
39diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py 53diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
40index 884b142..542e980 100644 54index 884b14231f..8f0638c0d7 100644
41--- a/Lib/test/test_time.py 55--- a/Lib/test/test_time.py
42+++ b/Lib/test/test_time.py 56+++ b/Lib/test/test_time.py
43@@ -492,6 +492,7 @@ class TimeTestCase(unittest.TestCase): 57@@ -492,6 +492,7 @@ def test_perf_counter(self):
44 @unittest.skipIf( 58 @unittest.skipIf(
45 support.is_wasi, "process_time not available on WASI" 59 support.is_wasi, "process_time not available on WASI"
46 ) 60 )
@@ -48,3 +62,14 @@ index 884b142..542e980 100644
48 def test_process_time(self): 62 def test_process_time(self):
49 # process_time() should not include time spend during a sleep 63 # process_time() should not include time spend during a sleep
50 start = time.process_time() 64 start = time.process_time()
65@@ -505,6 +506,7 @@ def test_process_time(self):
66 self.assertTrue(info.monotonic)
67 self.assertFalse(info.adjustable)
68
69+ @unittest.skip('timing related test, dependent on load')
70 def test_thread_time(self):
71 if not hasattr(time, 'thread_time'):
72 if sys.platform.startswith(('linux', 'win')):
73--
742.41.0
75