summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikko Rapeli <mikko.rapeli@linaro.org>2023-08-23 09:10:22 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-07 14:36:30 +0100
commit4bbcafa914ada94c08b6344b100e4af5ad6b2f38 (patch)
treec2afb830464dd1420a51ebe1138076638e0b17a2
parent72d34fa0ab0d3e068429b6c32bdab6ed07deb3b9 (diff)
downloadpoky-4bbcafa914ada94c08b6344b100e4af5ad6b2f38.tar.gz
oeqa selftest context.py: remove warning from missing meta-selftest
It's not a warning but a handled case and layer gets added automatically. Very few build configs have this layer enabled by default. (From OE-Core rev: 9a2493ea83f0b30578a819de05108502aaadc7f5) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 4b33245758..bd03e765b0 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -306,7 +306,7 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
306 os.chdir(builddir) 306 os.chdir(builddir)
307 307
308 if not "meta-selftest" in self.tc.td["BBLAYERS"]: 308 if not "meta-selftest" in self.tc.td["BBLAYERS"]:
309 self.tc.logger.warning("meta-selftest layer not found in BBLAYERS, adding it") 309 self.tc.logger.info("meta-selftest layer not found in BBLAYERS, adding it")
310 meta_selftestdir = os.path.join( 310 meta_selftestdir = os.path.join(
311 self.tc.td["BBLAYERS_FETCH_DIR"], 'meta-selftest') 311 self.tc.td["BBLAYERS_FETCH_DIR"], 'meta-selftest')
312 if os.path.isdir(meta_selftestdir): 312 if os.path.isdir(meta_selftestdir):