diff mbox series

oeqa/selftest/context: Rely on bitbake-getvar --value to only return value

Message ID 20230923040602.684469-1-pkj@axis.com
State New
Headers show
Series oeqa/selftest/context: Rely on bitbake-getvar --value to only return value | expand

Commit Message

Peter Kjellerstedt Sept. 23, 2023, 4:06 a.m. UTC
Before, "bitbake-getvar --value <var>" would include log output together
with the value. This was handled by piping the output to "tail -1".
Now, "bitbake-getvar --value" will no longer output any logs so the
piping to "tail" is no longer needed.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---

This of course relies on the corresponding patch for bitbake-getvar to
have been applied first.

 meta/lib/oeqa/selftest/context.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 5a09aeedff..c148aa5aab 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -111,7 +111,7 @@  class OESelftestTestContext(OETestContext):
 
         # Relative paths in BBLAYERS only works when the new build dir share the same ascending node
         if self.newbuilddir:
-            bblayers = subprocess.check_output("bitbake-getvar --value BBLAYERS | tail -1", cwd=builddir, shell=True, text=True)
+            bblayers = subprocess.check_output("bitbake-getvar --value BBLAYERS", cwd=builddir, shell=True, text=True)
             if '..' in bblayers:
                 bblayers_abspath = [os.path.abspath(path) for path in bblayers.split()]
                 with open("%s/conf/bblayers.conf" % newbuilddir, "a") as f: