mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 09:16:36 +01:00
Refresh patches. * https://www.python.org/downloads/release/python-3134/ Security content in this release * gh-135034: [CVE 2024-12718] [CVE 2025-4138] [CVE 2025-4330] [CVE 2025-4435] [CVE 2025-4517] Fixes multiple issues that allowed tarfile extraction filters (filter="data" and filter="tar") to be bypassed using crafted symlinks and hard links. * gh-133767: Fix use-after-free in the “unicode-escape” decoder with a non-“strict” error handler. * gh-128840: Short-circuit the processing of long IPv6 addresses early in ipaddress to prevent excessive memory consumption and a minor denial-of-service. gh-133767 got meawhile CVE-2025-4516 assigned. (From OE-Core rev: 55a9cd748531c75d46f5d6d53af692a38c6b6716) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
73 lines
2.5 KiB
Diff
73 lines
2.5 KiB
Diff
From 8828a52ebace98199569404f01174398bcc64a00 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 5dae370..23eb971 100644
|
|
--- a/Lib/test/_test_multiprocessing.py
|
|
+++ b/Lib/test/_test_multiprocessing.py
|
|
@@ -701,6 +701,7 @@ class _TestProcess(BaseTestCase):
|
|
close_queue(q)
|
|
|
|
@support.requires_resource('walltime')
|
|
+ @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))
|
|
@@ -2232,6 +2233,7 @@ class _TestBarrier(BaseTestCase):
|
|
except threading.BrokenBarrierError:
|
|
results.append(True)
|
|
|
|
+ @unittest.skip('timing related test, dependent on load')
|
|
def test_timeout(self):
|
|
"""
|
|
Test wait(timeout)
|
|
@@ -5320,6 +5322,7 @@ class TestWait(unittest.TestCase):
|
|
time.sleep(period)
|
|
|
|
@support.requires_resource('walltime')
|
|
+ @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 293799f..1dbb623 100644
|
|
--- a/Lib/test/test_time.py
|
|
+++ b/Lib/test/test_time.py
|
|
@@ -548,6 +548,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()
|
|
@@ -561,6 +562,7 @@ class TimeTestCase(unittest.TestCase):
|
|
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', 'android', 'win')):
|