summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch
blob: 96c5a3c84037b9ce5320d93300577de276f55fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
From 7171aeee22a0b7ab57cdf3d1ae15530549f8f92a Mon Sep 17 00:00:00 2001
From: Yi Fan Yu <yifan.yu@windriver.com>
Date: Thu, 1 Apr 2021 13:08:37 -0700
Subject: [PATCH] Skip failing tests due to load variability on YP AB

Skip these tests until AB-INT is solved.

[YOCTO #14296]

Upstream-Status: Inappropriate [OE-Specific]

Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>

---
 Lib/test/_test_multiprocessing.py | 2 ++
 Lib/test/test_time.py             | 1 +
 2 files changed, 3 insertions(+)

diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
index 3bc5b8f..a6e106d 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -568,6 +568,7 @@ class _TestProcess(BaseTestCase):
 
         close_queue(q)
 
+    @unittest.skip('timing related test, dependent on load')
     def test_many_processes(self):
         if self.TYPE == 'threads':
             self.skipTest('test not appropriate for {}'.format(self.TYPE))
@@ -4817,6 +4818,7 @@ class TestWait(unittest.TestCase):
         sem.release()
         time.sleep(period)
 
+    @unittest.skip('timing related test, dependent on load')
     def test_wait_integer(self):
         from multiprocessing.connection import wait
 
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
index 875615a..aebaa8c 100644
--- a/Lib/test/test_time.py
+++ b/Lib/test/test_time.py
@@ -474,6 +474,7 @@ class TimeTestCase(unittest.TestCase):
     def test_perf_counter(self):
         time.perf_counter()
 
+    @unittest.skip('timing related test, dependent on load')
     def test_process_time(self):
         # process_time() should not include time spend during a sleep
         start = time.process_time()