[bitbake-devel] [PATCH 1/2] tests/fetch: Allow bit/bitbake-selftest to function correctly

Richard Purdie richard.purdie at linuxfoundation.org
Sun Jan 7 12:05:58 UTC 2018


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):
-- 
2.7.4




More information about the bitbake-devel mailing list