mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
[YOCTO #14933] test_storlines is yet another Python ptest that fails intermittently on the Yocto AB, so disable it during ptests for now. (From OE-Core rev: b71d5ec10f8e64fc6102c66dfc36151f2b0b3c86) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit d7b9f8157e6214a83b5495e8a32e11540ae65ff8) Signed-off-by: Steve Sakoman <steve@sakoman.com>
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From 013ff01fdf2aa6ca69a7c80a2a2996630877e4ea Mon Sep 17 00:00:00 2001
|
|
From: Trevor Gamblin <tgamblin@baylibre.com>
|
|
Date: Fri, 6 Oct 2023 10:59:44 -0400
|
|
Subject: [PATCH] test_storlines: skip due to load variability
|
|
|
|
This is yet another test that intermittently fails on the Yocto AB when
|
|
a worker is under heavy load, so skip it during testing.
|
|
|
|
Upstream-Status: Inappropriate [OE-Specific]
|
|
|
|
[YOCTO #14933]
|
|
|
|
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
|
|
---
|
|
Lib/test/test_ftplib.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py
|
|
index 082a90d46b..508814d56a 100644
|
|
--- a/Lib/test/test_ftplib.py
|
|
+++ b/Lib/test/test_ftplib.py
|
|
@@ -629,6 +629,7 @@ def test_storbinary_rest(self):
|
|
self.client.storbinary('stor', f, rest=r)
|
|
self.assertEqual(self.server.handler_instance.rest, str(r))
|
|
|
|
+ @unittest.skip('timing related test, dependent on load')
|
|
def test_storlines(self):
|
|
data = RETR_DATA.replace('\r\n', '\n').encode(self.client.encoding)
|
|
f = io.BytesIO(data)
|
|
--
|
|
2.41.0
|
|
|