summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/sstatetests.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-09 11:23:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-23 12:12:00 +0000
commit938abfa5709fe6dd9b33993243fc23ae34aede78 (patch)
tree2fd51e027698aba127d2baf031595876581e096f /meta/lib/oeqa/selftest/cases/sstatetests.py
parent742323caf35765fae3a389fa921f4761a1c4ecff (diff)
downloadpoky-938abfa5709fe6dd9b33993243fc23ae34aede78.tar.gz
oeqa/selftest/sstatetests: Re-enable CDN tests
I believe other fixes and cleanup means the CDN tests are now working correctly, so enable it. (From OE-Core rev: baabe012e158e387a692b234920eeab977c27440) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/sstatetests.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/sstatetests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/sstatetests.py b/meta/lib/oeqa/selftest/cases/sstatetests.py
index 15032352f5..7c2b14e95f 100644
--- a/meta/lib/oeqa/selftest/cases/sstatetests.py
+++ b/meta/lib/oeqa/selftest/cases/sstatetests.py
@@ -921,12 +921,12 @@ SSTATE_MIRRORS ?= "file://.* http://cdn.jsdelivr.net/yocto/sstate/all/PATH;downl
921 result = bitbake("-D -S printdiff {}".format(targets)) 921 result = bitbake("-D -S printdiff {}".format(targets))
922 self.check_bb_output(result.output, exceptions) 922 self.check_bb_output(result.output, exceptions)
923 923
924 def _test_cdn_mirror_qemux86_64(self): 924 def test_cdn_mirror_qemux86_64(self):
925 # Example: 925 # Example:
926 # exceptions = [ ["packagegroup-core-sdk","do_package"] ] 926 # exceptions = [ ["packagegroup-core-sdk","do_package"] ]
927 exceptions = [] 927 exceptions = []
928 self.run_test_cdn_mirror("qemux86-64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions) 928 self.run_test_cdn_mirror("qemux86-64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions)
929 929
930 def _test_cdn_mirror_qemuarm64(self): 930 def test_cdn_mirror_qemuarm64(self):
931 exceptions = [] 931 exceptions = []
932 self.run_test_cdn_mirror("qemuarm64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions) 932 self.run_test_cdn_mirror("qemuarm64", "core-image-minimal core-image-full-cmdline core-image-sato-sdk", exceptions)