From f3781544a5c077610498a6b7dc5244ee4c5bc6df Mon Sep 17 00:00:00 2001 From: Aníbal Limón Date: Sun, 31 Jan 2016 08:45:47 -0600 Subject: testsdkext: Add skeleton for support Extensible SDK tests. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit oeqa/sdkext: Add module and __init__.py will contain eSDK tests. classes/testsdk: Add support for run eSDK tests. oeqa/oetest: Create oeSDKExtTest for now only inherit oeSDKTest, modified SDKExtTestContext now inherit SDKTestContext and set sdkext filesdir for store data fixtures. Signed-off-by: Aníbal Limón Signed-off-by: Ross Burton --- meta/lib/oeqa/sdkext/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 meta/lib/oeqa/sdkext/__init__.py (limited to 'meta/lib/oeqa/sdkext') diff --git a/meta/lib/oeqa/sdkext/__init__.py b/meta/lib/oeqa/sdkext/__init__.py new file mode 100644 index 0000000000..4cf3fa76b6 --- /dev/null +++ b/meta/lib/oeqa/sdkext/__init__.py @@ -0,0 +1,3 @@ +# Enable other layers to have tests in the same named directory +from pkgutil import extend_path +__path__ = extend_path(__path__, __name__) -- cgit 1.2.3-korg