diff options
Diffstat (limited to 'scripts/oe-selftest')
-rwxr-xr-x | scripts/oe-selftest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest index 900b3f4873..00ef51f516 100755 --- a/scripts/oe-selftest +++ b/scripts/oe-selftest | |||
@@ -442,7 +442,7 @@ def main(): | |||
442 | bbpath = get_bb_var('BBPATH').split(':') | 442 | bbpath = get_bb_var('BBPATH').split(':') |
443 | layer_libdirs = [p for p in (os.path.join(l, 'lib') for l in bbpath) if os.path.exists(p)] | 443 | layer_libdirs = [p for p in (os.path.join(l, 'lib') for l in bbpath) if os.path.exists(p)] |
444 | sys.path.extend(layer_libdirs) | 444 | sys.path.extend(layer_libdirs) |
445 | imp.reload(oeqa.selftest) | 445 | reload(oeqa.selftest) |
446 | 446 | ||
447 | if args.run_tests_by and len(args.run_tests_by) >= 2: | 447 | if args.run_tests_by and len(args.run_tests_by) >= 2: |
448 | valid_options = ['name', 'class', 'module', 'id', 'tag'] | 448 | valid_options = ['name', 'class', 'module', 'id', 'tag'] |