summaryrefslogtreecommitdiffstats
path: root/scripts/oe-selftest
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/oe-selftest')
-rwxr-xr-xscripts/oe-selftest5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest
index 60f9bb88f5..91e2dd2824 100755
--- a/scripts/oe-selftest
+++ b/scripts/oe-selftest
@@ -31,7 +31,10 @@ import unittest
31import logging 31import logging
32import argparse 32import argparse
33 33
34sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'meta/lib'))) 34sys.path.insert(0, os.path.dirname(os.path.realpath(__file__)) + '/lib')
35import scriptpath
36scriptpath.add_bitbake_lib_path()
37scriptpath.add_oe_lib_path()
35 38
36import oeqa.selftest 39import oeqa.selftest
37import oeqa.utils.ftools as ftools 40import oeqa.utils.ftools as ftools