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:
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.patch17
1 files changed, 7 insertions, 10 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 a49d603d47..96c5a3c840 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,9 +1,8 @@
1From 0b25b66d4f54bd74615c9ff10f3fae8f0d1c548d Mon Sep 17 00:00:00 2001 1From 7171aeee22a0b7ab57cdf3d1ae15530549f8f92a 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
5 5
6
7Skip these tests until AB-INT is solved. 6Skip these tests until AB-INT is solved.
8 7
9[YOCTO #14296] 8[YOCTO #14296]
@@ -11,16 +10,17 @@ Skip these tests until AB-INT is solved.
11Upstream-Status: Inappropriate [OE-Specific] 10Upstream-Status: Inappropriate [OE-Specific]
12 11
13Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com> 12Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>
13
14--- 14---
15 Lib/test/_test_multiprocessing.py | 2 ++ 15 Lib/test/_test_multiprocessing.py | 2 ++
16 Lib/test/test_time.py | 1 + 16 Lib/test/test_time.py | 1 +
17 2 files changed, 3 insertions(+) 17 2 files changed, 3 insertions(+)
18 18
19diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py 19diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
20index fd3b430..cda29f6 100644 20index 3bc5b8f..a6e106d 100644
21--- a/Lib/test/_test_multiprocessing.py 21--- a/Lib/test/_test_multiprocessing.py
22+++ b/Lib/test/_test_multiprocessing.py 22+++ b/Lib/test/_test_multiprocessing.py
23@@ -568,6 +568,7 @@ def test_close(self): 23@@ -568,6 +568,7 @@ class _TestProcess(BaseTestCase):
24 24
25 close_queue(q) 25 close_queue(q)
26 26
@@ -28,7 +28,7 @@ index fd3b430..cda29f6 100644
28 def test_many_processes(self): 28 def test_many_processes(self):
29 if self.TYPE == 'threads': 29 if self.TYPE == 'threads':
30 self.skipTest('test not appropriate for {}'.format(self.TYPE)) 30 self.skipTest('test not appropriate for {}'.format(self.TYPE))
31@@ -4715,6 +4716,7 @@ def signal_and_sleep(cls, sem, period): 31@@ -4817,6 +4818,7 @@ class TestWait(unittest.TestCase):
32 sem.release() 32 sem.release()
33 time.sleep(period) 33 time.sleep(period)
34 34
@@ -37,10 +37,10 @@ index fd3b430..cda29f6 100644
37 from multiprocessing.connection import wait 37 from multiprocessing.connection import wait
38 38
39diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py 39diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
40index 3258298..adcf407 100644 40index 875615a..aebaa8c 100644
41--- a/Lib/test/test_time.py 41--- a/Lib/test/test_time.py
42+++ b/Lib/test/test_time.py 42+++ b/Lib/test/test_time.py
43@@ -474,6 +474,7 @@ def test_monotonic(self): 43@@ -474,6 +474,7 @@ class TimeTestCase(unittest.TestCase):
44 def test_perf_counter(self): 44 def test_perf_counter(self):
45 time.perf_counter() 45 time.perf_counter()
46 46
@@ -48,6 +48,3 @@ index 3258298..adcf407 100644
48 def test_process_time(self): 48 def test_process_time(self):
49 # process_time() should not include time spend during a sleep 49 # process_time() should not include time spend during a sleep
50 start = time.process_time() 50 start = time.process_time()
51--
522.17.1
53