]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
oeqa selftest context.py: remove warning from missing meta-selftest
authorMikko Rapeli <mikko.rapeli@linaro.org>
Wed, 23 Aug 2023 06:10:22 +0000 (09:10 +0300)
committerSteve Sakoman <steve@sakoman.com>
Tue, 10 Oct 2023 15:14:28 +0000 (05:14 -1000)
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>
(cherry picked from commit 9a2493ea83f0b30578a819de05108502aaadc7f5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/lib/oeqa/selftest/context.py

index 6cf1bef2129794ac69a18b8d9ec96edb957bdb8c..c98763735feded22c1694360e167873ba5a0baa1 100644 (file)
@@ -296,7 +296,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):