[oe-commits] [openembedded-core] 01/05: selftest/eSDK.py: fix sstate dir not found error

git at git.openembedded.org git at git.openembedded.org
Mon Sep 11 09:48:30 UTC 2017


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

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

commit 9d04fe3a0ce7eb418cd48438e1699825904e2dfb
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Thu Jan 5 13:03:28 2017 +0800

    selftest/eSDK.py: fix sstate dir not found error
    
    Fix the error below when SSTATE_DIR is not "${BUILDDIR}/sstate-cache".
    
      FileNotFoundError: [Errno 2] No such file or directory: '/xxx/../sstate-cache'
    
    (From OE-Core rev: 785f0343d04c1684363b5289a3012cf7e1caa95f)
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/selftest/eSDK.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/selftest/eSDK.py b/meta/lib/oeqa/selftest/eSDK.py
index 9d5c680..b43a452 100644
--- a/meta/lib/oeqa/selftest/eSDK.py
+++ b/meta/lib/oeqa/selftest/eSDK.py
@@ -55,7 +55,7 @@ class oeSDKExtSelfTest(oeSelfTest):
     @classmethod
     def setUpClass(cls):
         # Start to serve sstate dir
-        sstate_dir = os.path.join(os.environ['BUILDDIR'], 'sstate-cache')
+        sstate_dir = get_bb_var('SSTATE_DIR')
         cls.http_service = HTTPService(sstate_dir)
         cls.http_service.start()
 

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


More information about the Openembedded-commits mailing list