blob: 61dd4a5bc040d1e4932bac75baa463a7e6547e29 [file] [log] [blame]
Patrick Williams2390b1b2022-11-03 13:47:49 -05001From 01e02fb4720ecbbc44c694ee1b7fb6d5d95b5fe2 Mon Sep 17 00:00:00 2001
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05002From: Yi Fan Yu <yifan.yu@windriver.com>
3Date: Thu, 1 Apr 2021 13:08:37 -0700
4Subject: [PATCH] Skip failing tests due to load variability on YP AB
5
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05006Skip these tests until AB-INT is solved.
7
8[YOCTO #14296]
9
10Upstream-Status: Inappropriate [OE-Specific]
11
12Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>
Andrew Geissler595f6302022-01-24 19:11:47 +000013
Andrew Geissler3b8a17c2021-04-15 15:55:55 -050014---
15 Lib/test/_test_multiprocessing.py | 2 ++
16 Lib/test/test_time.py | 1 +
17 2 files changed, 3 insertions(+)
18
19diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
Patrick Williams2390b1b2022-11-03 13:47:49 -050020index 599c3f2..23328be 100644
Andrew Geissler3b8a17c2021-04-15 15:55:55 -050021--- a/Lib/test/_test_multiprocessing.py
22+++ b/Lib/test/_test_multiprocessing.py
Patrick Williams2390b1b2022-11-03 13:47:49 -050023@@ -618,6 +618,7 @@ class _TestProcess(BaseTestCase):
Andrew Geissler3b8a17c2021-04-15 15:55:55 -050024
25 close_queue(q)
26
27+ @unittest.skip('timing related test, dependent on load')
28 def test_many_processes(self):
29 if self.TYPE == 'threads':
30 self.skipTest('test not appropriate for {}'.format(self.TYPE))
Patrick Williams2390b1b2022-11-03 13:47:49 -050031@@ -4890,6 +4891,7 @@ class TestWait(unittest.TestCase):
Andrew Geissler3b8a17c2021-04-15 15:55:55 -050032 sem.release()
33 time.sleep(period)
34
35+ @unittest.skip('timing related test, dependent on load')
36 def test_wait_integer(self):
37 from multiprocessing.connection import wait
38
39diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
Patrick Williams2390b1b2022-11-03 13:47:49 -050040index 884b142..542e980 100644
Andrew Geissler3b8a17c2021-04-15 15:55:55 -050041--- a/Lib/test/test_time.py
42+++ b/Lib/test/test_time.py
Patrick Williams2390b1b2022-11-03 13:47:49 -050043@@ -492,6 +492,7 @@ class TimeTestCase(unittest.TestCase):
44 @unittest.skipIf(
45 support.is_wasi, "process_time not available on WASI"
46 )
Andrew Geissler3b8a17c2021-04-15 15:55:55 -050047+ @unittest.skip('timing related test, dependent on load')
48 def test_process_time(self):
49 # process_time() should not include time spend during a sleep
50 start = time.process_time()