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:27 +0100
commit9a2493ea83f0b30578a819de05108502aaadc7f5 (patch)
tree87c1791cd9822890656fd8a1a90af7ee86a6a4ec
parent8aed3ca405cb3cc5d346eb8da8b3307d93f75d5b (diff)
downloadopenembedded-core-9a2493ea83f0b30578a819de05108502aaadc7f5.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. Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.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):
os.chdir(builddir)
if not "meta-selftest" in self.tc.td["BBLAYERS"]:
- self.tc.logger.warning("meta-selftest layer not found in BBLAYERS, adding it")
+ self.tc.logger.info("meta-selftest layer not found in BBLAYERS, adding it")
meta_selftestdir = os.path.join(
self.tc.td["BBLAYERS_FETCH_DIR"], 'meta-selftest')
if os.path.isdir(meta_selftestdir):