diff options
author | Aníbal Limón <limon.anibal@gmail.com> | 2016-02-01 10:07:48 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 15:51:03 +0000 |
commit | fcf0dc253f914418e15e2c6afc6f649b9270824a (patch) | |
tree | 2d65d1a914f6e1749e1be744bbc337dc95a0c7fb /meta/classes/testsdk.bbclass | |
parent | 3e3abf0753a3bf1737dc4f476df4e70d31070391 (diff) | |
download | openembedded-core-contrib-fcf0dc253f914418e15e2c6afc6f649b9270824a.tar.gz |
classes/testsdk: Add help information on how to run tests.
Signed-off-by: Aníbal Limón <limon.anibal@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/testsdk.bbclass')
-rw-r--r-- | meta/classes/testsdk.bbclass | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 453ce4056d9..487f40cea41 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass @@ -2,6 +2,16 @@ # # Released under the MIT license (see COPYING.MIT) +# testsdk.bbclass enables testing for SDK and Extensible SDK +# +# For run SDK tests you need to do, +# - bitbake core-image-sato -c populate_sdk +# - bitbake core-image-sato -c testsdk +# +# For run eSDK tests you need to do, +# - bitbake core-image-sato -c populate_sdk_ext +# - bitbake core-image-sato -c testsdkext + TEST_LOG_DIR ?= "${WORKDIR}/testimage" TESTSDKLOCK = "${TMPDIR}/testsdk.lock" |