diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2023-08-23 09:10:22 +0300 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-10-13 04:31:05 -1000 |
commit | 8acce65aa5d85ac3f26f8a6be07ee640df290892 (patch) | |
tree | 70f3337fababebd826c49048c678768b7bbafd9c | |
parent | 0198d514d603284e86f639def17baefb316cb2a7 (diff) | |
download | poky-8acce65aa5d85ac3f26f8a6be07ee640df290892.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: 70d2ceea48ef6ec04675e4e6a9c48ebc5bb78f52)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
(cherry picked from commit 9a2493ea83f0b30578a819de05108502aaadc7f5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/lib/oeqa/selftest/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py index 6cf1bef212..c98763735f 100644 --- a/meta/lib/oeqa/selftest/context.py +++ b/meta/lib/oeqa/selftest/context.py | |||
@@ -296,7 +296,7 @@ class OESelftestTestContextExecutor(OETestContextExecutor): | |||
296 | os.chdir(builddir) | 296 | os.chdir(builddir) |
297 | 297 | ||
298 | if not "meta-selftest" in self.tc.td["BBLAYERS"]: | 298 | if not "meta-selftest" in self.tc.td["BBLAYERS"]: |
299 | self.tc.logger.warning("meta-selftest layer not found in BBLAYERS, adding it") | 299 | self.tc.logger.info("meta-selftest layer not found in BBLAYERS, adding it") |
300 | meta_selftestdir = os.path.join( | 300 | meta_selftestdir = os.path.join( |
301 | self.tc.td["BBLAYERS_FETCH_DIR"], 'meta-selftest') | 301 | self.tc.td["BBLAYERS_FETCH_DIR"], 'meta-selftest') |
302 | if os.path.isdir(meta_selftestdir): | 302 | if os.path.isdir(meta_selftestdir): |