[oe-commits] [openembedded-core] branch master updated: oeqa/selftest/esdk: Fix typo causing test failure

git at git.openembedded.org git at git.openembedded.org
Thu Dec 6 23:28:38 UTC 2018


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

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

The following commit(s) were added to refs/heads/master by this push:
     new c6de27c  oeqa/selftest/esdk: Fix typo causing test failure
c6de27c is described below

commit c6de27c2f6f598849dcb8036ee849f449ba7f327
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Dec 6 23:25:49 2018 +0000

    oeqa/selftest/esdk: Fix typo causing test failure
    
    2018-12-06 23:19:24,564 - oe-selftest - INFO - Traceback (most recent call last):
      File "/media/build1/poky-sumo/meta/lib/oeqa/core/case.py", line 32, in _oeSetUpClass
        clss.setUpClassMethod()
      File "/media/build1/poky-sumo/meta/lib/oeqa/selftest/cases/eSDK.py", line 78, in setUpClass
        cls.tmpdir_eSDKQA = cls.tempdirobj.name
    AttributeError: type object 'oeSDKExtSelfTest' has no attribute 'tempdirobj'
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/selftest/cases/eSDK.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/selftest/cases/eSDK.py b/meta/lib/oeqa/selftest/cases/eSDK.py
index 14f75d8..12bd710 100644
--- a/meta/lib/oeqa/selftest/cases/eSDK.py
+++ b/meta/lib/oeqa/selftest/cases/eSDK.py
@@ -74,7 +74,7 @@ CORE_IMAGE_EXTRA_INSTALL = "perl"
 
         bb_vars = get_bb_vars(['SSTATE_DIR', 'WORKDIR'], cls.image)
         cls.tmpdirobj = tempfile.TemporaryDirectory(prefix="selftest-esdk-", dir=bb_vars["WORKDIR"])
-        cls.tmpdir_eSDKQA = cls.tempdirobj.name
+        cls.tmpdir_eSDKQA = cls.tmpdirobj.name
 
         oeSDKExtSelfTest.generate_eSDK(cls.image)
 

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


More information about the Openembedded-commits mailing list