summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-10-19 13:25:42 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-20 13:54:23 +0100
commitd180e9f1c24048cbc5bf2de64e9cb21b753b29c4 (patch)
tree2854b3c555e0ba2579887da062165894824a3ef3
parent8cea0676b7e71f069303394ccef2421bcc221c2c (diff)
downloadpoky-d180e9f1c24048cbc5bf2de64e9cb21b753b29c4.tar.gz
selftest/buildoptions: tag the download mirror test with 'yocto-mirrors'
This will allow bundling all yocto mirror tests together, both for the purposes of running only them specifically, and excluding them from 'general' oe-selftest runs. There is an upcoming test for sstate cache served over content delivery network which will use the same tag, so it can be run together with this. (From OE-Core rev: 2a3f69b83ed10622d6a39774528dbfaebb3e5ded) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/cases/buildoptions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/buildoptions.py b/meta/lib/oeqa/selftest/cases/buildoptions.py
index 104448442a..31dafaa9c5 100644
--- a/meta/lib/oeqa/selftest/cases/buildoptions.py
+++ b/meta/lib/oeqa/selftest/cases/buildoptions.py
@@ -14,6 +14,7 @@ from oeqa.selftest.cases.buildhistory import BuildhistoryBase
14from oeqa.core.decorator.data import skipIfMachine 14from oeqa.core.decorator.data import skipIfMachine
15from oeqa.utils.commands import bitbake, get_bb_var, get_bb_vars 15from oeqa.utils.commands import bitbake, get_bb_var, get_bb_vars
16import oeqa.utils.ftools as ftools 16import oeqa.utils.ftools as ftools
17from oeqa.core.decorator import OETestTag
17 18
18class ImageOptionsTests(OESelftestTestCase): 19class ImageOptionsTests(OESelftestTestCase):
19 20
@@ -204,6 +205,7 @@ class ToolchainOptions(OESelftestTestCase):
204 self.write_config(features) 205 self.write_config(features)
205 bitbake('fortran-helloworld') 206 bitbake('fortran-helloworld')
206 207
208@OETestTag("yocto-mirrors")
207class SourceMirroring(OESelftestTestCase): 209class SourceMirroring(OESelftestTestCase):
208 # Can we download everything from the Yocto Sources Mirror over http only 210 # Can we download everything from the Yocto Sources Mirror over http only
209 def test_yocto_source_mirror(self): 211 def test_yocto_source_mirror(self):