From 643eacb162b8710330ef292bfda21cfeab97f95c Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 7 Jan 2018 11:48:43 +0000 Subject: 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 --- 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 7d7c5d7ff..11698f209 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): -- cgit 1.2.3-korg