summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-06 21:44:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-06 21:44:47 +0000
commitcfb975c62e5b5fe3f476f44160ef479c6553f82c (patch)
tree4e28f862b8496556fbafa3d8c1f0d0c04f7e7158
parent65e773f88b78ece2b4f4e117a0ce9ee5e84e6464 (diff)
downloadpoky-cfb975c62e5b5fe3f476f44160ef479c6553f82c.tar.gz
Revert "selftest/sstatetests: run CDN mirror check only once"
This reverts commit 0d3901b768272abc2e27ba2ab807dad24917e0cf. We've still having CDN issues so go back to the double attempt to see if this improves things. (From OE-Core rev: 136f0edb75d9601a0ae56e025419d3cddfb90219) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/cases/sstatetests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/sstatetests.py b/meta/lib/oeqa/selftest/cases/sstatetests.py
index 5164244566..681a57f4db 100644
--- a/meta/lib/oeqa/selftest/cases/sstatetests.py
+++ b/meta/lib/oeqa/selftest/cases/sstatetests.py
@@ -986,10 +986,12 @@ MACHINE = "{}"
986 986
987 def test_cdn_mirror_qemux86_64(self): 987 def test_cdn_mirror_qemux86_64(self):
988 exceptions = [] 988 exceptions = []
989 self.run_test("qemux86-64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions, ignore_errors = True)
989 self.run_test("qemux86-64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions) 990 self.run_test("qemux86-64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions)
990 991
991 def test_cdn_mirror_qemuarm64(self): 992 def test_cdn_mirror_qemuarm64(self):
992 exceptions = [] 993 exceptions = []
994 self.run_test("qemuarm64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions, ignore_errors = True)
993 self.run_test("qemuarm64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions) 995 self.run_test("qemuarm64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions)
994 996
995 def test_local_cache_qemux86_64(self): 997 def test_local_cache_qemux86_64(self):