[oe-commits] [openembedded-core] 07/46: scripts/runqemu: Fix logic error causing failures with MACHINE from the environment

git at git.openembedded.org git at git.openembedded.org
Fri Nov 30 17:35:12 UTC 2018


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

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

commit 2fe6ebd473499aae0d922bd919782ba989763b88
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Nov 28 16:09:56 2018 +0000

    scripts/runqemu: Fix logic error causing failures with MACHINE from the environment
    
    MACHINE=qemux86-64 oe-selftest -r runqemu.RunqemuTests.test_boot_machine_slirp_qcow2
    
    fails yet
    
    oe-selftest -r runqemu.RunqemuTests.test_boot_machine_slirp_qcow2
    
    with MACHINE in local.conf would work.
    
    It turns out that:
    
    runqemu slirp wic.qcow2 qemux86-64
    
    works but:
    
    MACHINE=qemux86-64 runqemu slirp wic.qcow2 qemux86-64
    
    does not.
    
    The reason are the misplaced return statements in runqemu, its skipping a block
    of logic when MACHINE is set in the environment when it shouldn't. Fix this.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/runqemu | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index c79be9a..3786646 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -475,14 +475,11 @@ class BaseConfig(object):
                                        "Try 'runqemu help' on how to use it" % \
                                         (unknown_arg, arg))
         # Check to make sure it is a valid machine
-        if unknown_arg:
-            if self.get('MACHINE') == unknown_arg:
-                return
+        if unknown_arg and self.get('MACHINE') != unknown_arg:
             if self.get('DEPLOY_DIR_IMAGE'):
                 machine = os.path.basename(self.get('DEPLOY_DIR_IMAGE'))
                 if unknown_arg == machine:
                     self.set("MACHINE", machine)
-                    return
 
             self.check_arg_machine(unknown_arg)
 

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


More information about the Openembedded-commits mailing list