[oe-commits] [openembedded-core] 18/44: oeqa/commands: don't break if get_bb_vars is passed a tuple

git at git.openembedded.org git at git.openembedded.org
Sat Dec 2 11:26:50 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit b5837f62c8af94d134cf2160afdfb9e08b3418d1
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Wed Nov 22 15:56:54 2017 +0000

    oeqa/commands: don't break if get_bb_vars is passed a tuple
    
    get_bb_vars was using variables.copy() to duplicate the list of variables passed
    but this function only exists in lists [1,2] and not tuples (1,2).
    
    Instead of throwing an exception if the variables are in a tuple, simply
    construct a new list using the passed sequence-like object.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/lib/oeqa/utils/commands.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py
index 0bb9002..cad0bea 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -227,7 +227,7 @@ def get_bb_vars(variables=None, target=None, postconfig=None):
     bbenv = get_bb_env(target, postconfig=postconfig)
 
     if variables is not None:
-        variables = variables.copy()
+        variables = list(variables)
     var_re = re.compile(r'^(export )?(?P<var>\w+(_.*)?)="(?P<value>.*)"$')
     unset_re = re.compile(r'^unset (?P<var>\w+)$')
     lastline = None

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list