diff options
author | Aníbal Limón <limon.anibal@gmail.com> | 2016-01-31 08:45:47 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:23 +0000 |
commit | 4cfdf174cee1c9e2c012d8c17d029477db5841e2 (patch) | |
tree | 3f4accfd1164b49291e0602c70503e26d0cff95a /meta/classes/testsdk.bbclass | |
parent | 5580d7bd6250bd1494d72435738a9c9d70f5465c (diff) | |
download | poky-4cfdf174cee1c9e2c012d8c17d029477db5841e2.tar.gz |
testsdkext: Add skeleton for support Extensible SDK tests.
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.
(From OE-Core rev: f3781544a5c077610498a6b7dc5244ee4c5bc6df)
Signed-off-by: Aníbal Limón <limon.anibal@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/testsdk.bbclass')
-rw-r--r-- | meta/classes/testsdk.bbclass | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index a0c50fe4a9..417510ce3d 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass | |||
@@ -114,7 +114,15 @@ def testsdkext_main(d): | |||
114 | bb.plain("Running SDK Compatibility tests ...") | 114 | bb.plain("Running SDK Compatibility tests ...") |
115 | run_test_context(SDKTestContext, d, testdir, tcname, pn) | 115 | run_test_context(SDKTestContext, d, testdir, tcname, pn) |
116 | finally: | 116 | finally: |
117 | bb.utils.remove(testdir, True) | 117 | pass |
118 | |||
119 | try: | ||
120 | bb.plain("Running Extensible SDK tests ...") | ||
121 | run_test_context(SDKExtTestContext, d, testdir, tcname, pn) | ||
122 | finally: | ||
123 | pass | ||
124 | |||
125 | bb.utils.remove(testdir, True) | ||
118 | 126 | ||
119 | testsdkext_main[vardepsexclude] =+ "BB_ORIGENV" | 127 | testsdkext_main[vardepsexclude] =+ "BB_ORIGENV" |
120 | 128 | ||