From 46ce0b5ef3ee623cc9d366f83030363b470ed11e Mon Sep 17 00:00:00 2001 From: Mariano Lopez Date: Wed, 18 Jan 2017 13:23:59 +0000 Subject: testexport.bbclass: Migrate testexport to use new framework This migrates current testexport implmentation to use the new OEQA framework. [YOCTO #10686] (From OE-Core rev: 92cb884c989460563a063b29d2be8b7acd20577e) Signed-off-by: Mariano Lopez Signed-off-by: Richard Purdie --- scripts/oe-test | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'scripts/oe-test') diff --git a/scripts/oe-test b/scripts/oe-test index 5731dff485..a1d282db33 100755 --- a/scripts/oe-test +++ b/scripts/oe-test @@ -16,8 +16,14 @@ lib_path = scripts_path + '/lib' sys.path = sys.path + [lib_path] import argparse_oe import scriptutils -import scriptpath -scriptpath.add_oe_lib_path() + +# oe-test is used for testexport and it doesn't have oe lib +# so we just skip adding these libraries (not used in testexport) +try: + import scriptpath + scriptpath.add_oe_lib_path() +except ImportError: + pass from oeqa.core.context import OETestContextExecutor -- cgit v1.2.3-54-g00ecf