| From 0c8002d12149fdfbbcd9a9215876d474f157eb9c 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> |
| |
| Skip two additional tests due to suspected load variability failures. |
| |
| [YOCTO #15131] |
| [YOCTO #15177] |
| |
| Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> |
| --- |
| Lib/test/_test_multiprocessing.py | 3 +++ |
| Lib/test/test_time.py | 2 ++ |
| 2 files changed, 5 insertions(+) |
| |
| diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py |
| index b50a154320..b8b2c4204d 100644 |
| --- a/Lib/test/_test_multiprocessing.py |
| +++ b/Lib/test/_test_multiprocessing.py |
| @@ -618,6 +618,7 @@ def test_close(self): |
| |
| 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)) |
| @@ -2003,6 +2004,7 @@ def _test_timeout_f(cls, barrier, results): |
| except threading.BrokenBarrierError: |
| results.append(True) |
| |
| + @unittest.skip('timing related test, dependent on load') |
| def test_timeout(self): |
| """ |
| Test wait(timeout) |
| @@ -4890,6 +4892,7 @@ def signal_and_sleep(cls, sem, period): |
| 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 884b14231f..8f0638c0d7 100644 |
| --- a/Lib/test/test_time.py |
| +++ b/Lib/test/test_time.py |
| @@ -492,6 +492,7 @@ def test_perf_counter(self): |
| @unittest.skipIf( |
| support.is_wasi, "process_time not available on WASI" |
| ) |
| + @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() |
| @@ -505,6 +506,7 @@ def test_process_time(self): |
| self.assertTrue(info.monotonic) |
| self.assertFalse(info.adjustable) |
| |
| + @unittest.skip('timing related test, dependent on load') |
| def test_thread_time(self): |
| if not hasattr(time, 'thread_time'): |
| if sys.platform.startswith(('linux', 'win')): |
| -- |
| 2.41.0 |
| |