mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

The semaphore fix has landed and is available from 3.11 onwards:
1ee0f94d16
Drop 0001-Mitigate-the-race-condition-in-testSockName.patch
as it is merged upstream.
(From OE-Core rev: f10cdc155e47af5627ee999c57e1d083f9382a91)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
51 lines
1.7 KiB
Diff
51 lines
1.7 KiB
Diff
From 01e02fb4720ecbbc44c694ee1b7fb6d5d95b5fe2 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>
|
|
|
|
---
|
|
Lib/test/_test_multiprocessing.py | 2 ++
|
|
Lib/test/test_time.py | 1 +
|
|
2 files changed, 3 insertions(+)
|
|
|
|
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
|
|
index 599c3f2..23328be 100644
|
|
--- a/Lib/test/_test_multiprocessing.py
|
|
+++ b/Lib/test/_test_multiprocessing.py
|
|
@@ -618,6 +618,7 @@ class _TestProcess(BaseTestCase):
|
|
|
|
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))
|
|
@@ -4890,6 +4891,7 @@ class TestWait(unittest.TestCase):
|
|
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 884b142..542e980 100644
|
|
--- a/Lib/test/test_time.py
|
|
+++ b/Lib/test/test_time.py
|
|
@@ -492,6 +492,7 @@ class TimeTestCase(unittest.TestCase):
|
|
@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()
|