diff options
author | Lucian Musat <george.l.musat@intel.com> | 2015-05-12 18:00:06 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 11:41:14 +0100 |
commit | 1ae7e1cc4a5c7a217dee937c330539e5c8ac794d (patch) | |
tree | db7a2f46716751f7243acfc46e247b3ddf5139a7 /meta/lib/oeqa | |
parent | d32fb4c50f73d169d7b9a238801aa72d77560135 (diff) | |
download | openembedded-core-1ae7e1cc4a5c7a217dee937c330539e5c8ac794d.tar.gz openembedded-core-1ae7e1cc4a5c7a217dee937c330539e5c8ac794d.tar.bz2 openembedded-core-1ae7e1cc4a5c7a217dee937c330539e5c8ac794d.zip |
oeqa/utils: Fixed a problem with get_bb_var not returning right variable.
It searches using regex now and should be more accurate.
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index bc1dbb1a5f..663e4e7f41 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -16,6 +16,7 @@ import threading import logging from oeqa.utils import CommandError from oeqa.utils import ftools +import re class Command(object): def __init__(self, command, bg=False, timeout=None, data=None, **options): @@ -139,11 +140,11 @@ def get_bb_var(var, target=None, postconfig=None): bbenv = get_bb_env(target, postconfig=postconfig) lastline = None for line in bbenv.splitlines(): - if line.startswith(var + "=") or line.startswith("export " + var + "="): + if re.search("^(export )?%s=" % var, line): val = line.split('=')[1] val = val.strip('\"') break - elif line.startswith("unset " + var): + elif re.match("unset %s$" % var, line): # Handle [unexport] variables if lastline.startswith('# "'): val = lastline.split('\"')[1] |