[oe-commits] [bitbake] 05/05: tests/fetch: Allow bit/bitbake-selftest to function correctly

git at git.openembedded.org git at git.openembedded.org
Sun Jan 7 12:15:08 UTC 2018


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

rpurdie pushed a commit to branch master
in repository bitbake.

commit 643eacb162b8710330ef292bfda21cfeab97f95c
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Jan 7 11:48:43 2018 +0000

    tests/fetch: Allow bit/bitbake-selftest to function correctly
    
    Without this the paths to git-make-shallow are incorrect and cause test
    failures if bitbake isn't executed from cwd or PATH.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/tests/fetch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/tests/fetch.py b/lib/bb/tests/fetch.py
index 7d7c5d7..11698f2 100644
--- a/lib/bb/tests/fetch.py
+++ b/lib/bb/tests/fetch.py
@@ -874,7 +874,7 @@ class FetchCheckStatusTest(FetcherTest):
 
 
 class GitMakeShallowTest(FetcherTest):
-    bitbake_dir = os.path.join(os.path.dirname(os.path.join(__file__)), '..', '..', '..')
+    bitbake_dir = os.path.join(os.path.dirname(os.path.join(os.path.abspath(__file__))), '..', '..', '..')
     make_shallow_path = os.path.join(bitbake_dir, 'bin', 'git-make-shallow')
 
     def setUp(self):

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


More information about the Openembedded-commits mailing list