Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 1 | From 3471e3478e0760c42e04f8046cee2367ab5706d2 Mon Sep 17 00:00:00 2001 |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 2 | From: Yi Fan Yu <yifan.yu@windriver.com> |
| 3 | Date: Thu, 1 Apr 2021 13:08:37 -0700 |
| 4 | Subject: [PATCH] Skip failing tests due to load variability on YP AB |
| 5 | |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 6 | Skip these tests until AB-INT is solved. |
| 7 | |
| 8 | [YOCTO #14296] |
| 9 | |
| 10 | Upstream-Status: Inappropriate [OE-Specific] |
| 11 | |
| 12 | Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com> |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 13 | |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 14 | Skip two additional tests due to suspected load variability failures. |
| 15 | |
| 16 | [YOCTO #15131] |
| 17 | [YOCTO #15177] |
| 18 | |
| 19 | Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 20 | --- |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 21 | Lib/test/_test_multiprocessing.py | 3 +++ |
| 22 | Lib/test/test_time.py | 2 ++ |
| 23 | 2 files changed, 5 insertions(+) |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 24 | |
| 25 | diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py |
Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 26 | index e42c7ab..dff5227 100644 |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 27 | --- a/Lib/test/_test_multiprocessing.py |
| 28 | +++ b/Lib/test/_test_multiprocessing.py |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 29 | @@ -682,6 +682,7 @@ class _TestProcess(BaseTestCase): |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 30 | close_queue(q) |
| 31 | |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 32 | @support.requires_resource('walltime') |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 33 | + @unittest.skip('timing related test, dependent on load') |
| 34 | def test_many_processes(self): |
| 35 | if self.TYPE == 'threads': |
| 36 | self.skipTest('test not appropriate for {}'.format(self.TYPE)) |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 37 | @@ -2066,6 +2067,7 @@ class _TestBarrier(BaseTestCase): |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 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) |
Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 45 | @@ -5024,6 +5026,7 @@ class TestWait(unittest.TestCase): |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 46 | time.sleep(period) |
| 47 | |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 48 | @support.requires_resource('walltime') |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 49 | + @unittest.skip('timing related test, dependent on load') |
| 50 | def test_wait_integer(self): |
| 51 | from multiprocessing.connection import wait |
| 52 | |
| 53 | diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 54 | index 02cc3f4..51a4548 100644 |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 55 | --- a/Lib/test/test_time.py |
| 56 | +++ b/Lib/test/test_time.py |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 57 | @@ -492,6 +492,7 @@ class TimeTestCase(unittest.TestCase): |
Patrick Williams | 2390b1b | 2022-11-03 13:47:49 -0500 | [diff] [blame] | 58 | @unittest.skipIf( |
| 59 | support.is_wasi, "process_time not available on WASI" |
| 60 | ) |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 61 | + @unittest.skip('timing related test, dependent on load') |
| 62 | def test_process_time(self): |
| 63 | # process_time() should not include time spend during a sleep |
| 64 | start = time.process_time() |
Patrick Williams | 56b44a9 | 2024-01-19 08:49:29 -0600 | [diff] [blame] | 65 | @@ -505,6 +506,7 @@ class TimeTestCase(unittest.TestCase): |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 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')): |