diff options
| author | Yi Fan Yu <yifan.yu@windriver.com> | 2021-04-01 14:39:27 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-05 15:29:02 +0100 |
| commit | d1b90dae19d3ab1b5ecfb31a3d183c22b5828677 (patch) | |
| tree | 5e85eeba15e7a6ad8006b4f33f55e10008e01a08 /meta/recipes-devtools/python/python3 | |
| parent | 8c130cd76407df9860cc6850bea056d9d9ecfe31 (diff) | |
| download | poky-d1b90dae19d3ab1b5ecfb31a3d183c22b5828677.tar.gz | |
python3: Skip failing ptests due to load variability
Skip tests until load issue is fixed,
most commonly seen on the arm64 builder.
[YOCTO #14296]
(From OE-Core rev: 7c67bc2476b784083acbc7a55ecf3627ec8f2b6b)
Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3')
| -rw-r--r-- | meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch | 53 |
1 files changed, 53 insertions, 0 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 new file mode 100644 index 0000000000..a49d603d47 --- /dev/null +++ b/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | From 0b25b66d4f54bd74615c9ff10f3fae8f0d1c548d Mon Sep 17 00:00:00 2001 | ||
| 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 | |||
| 6 | |||
| 7 | Skip these tests until AB-INT is solved. | ||
| 8 | |||
| 9 | [YOCTO #14296] | ||
| 10 | |||
| 11 | Upstream-Status: Inappropriate [OE-Specific] | ||
| 12 | |||
| 13 | Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com> | ||
| 14 | --- | ||
| 15 | Lib/test/_test_multiprocessing.py | 2 ++ | ||
| 16 | Lib/test/test_time.py | 1 + | ||
| 17 | 2 files changed, 3 insertions(+) | ||
| 18 | |||
| 19 | diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py | ||
| 20 | index fd3b430..cda29f6 100644 | ||
| 21 | --- a/Lib/test/_test_multiprocessing.py | ||
| 22 | +++ b/Lib/test/_test_multiprocessing.py | ||
| 23 | @@ -568,6 +568,7 @@ def test_close(self): | ||
| 24 | |||
| 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)) | ||
| 31 | @@ -4715,6 +4716,7 @@ def signal_and_sleep(cls, sem, period): | ||
| 32 | 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 | |||
| 39 | diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py | ||
| 40 | index 3258298..adcf407 100644 | ||
| 41 | --- a/Lib/test/test_time.py | ||
| 42 | +++ b/Lib/test/test_time.py | ||
| 43 | @@ -474,6 +474,7 @@ def test_monotonic(self): | ||
| 44 | def test_perf_counter(self): | ||
| 45 | time.perf_counter() | ||
| 46 | |||
| 47 | + @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() | ||
| 51 | -- | ||
| 52 | 2.17.1 | ||
| 53 | |||
