From 1103a03742b89af8b43feeb8ae3580feeb4f8d83 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 7 Jan 2018 11:48:43 +0000 Subject: bitbake: 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. (Bitbake rev: 643eacb162b8710330ef292bfda21cfeab97f95c) Signed-off-by: Richard Purdie --- bitbake/lib/bb/tests/fetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py index 7d7c5d7ff9..11698f2091 100644 --- a/bitbake/lib/bb/tests/fetch.py +++ b/bitbake/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): -- cgit v1.2.3-54-g00ecf