diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2016-10-22 13:07:49 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-06 23:35:19 +0000 |
commit | d190c69347921a626665a53469dcf99b3c86994b (patch) | |
tree | 055049454cfe6a526d30c759987402c3c25833c2 | |
parent | 28a37020f50e513b247015b1b0a784c99d41aae3 (diff) | |
download | openembedded-core-contrib-d190c69347921a626665a53469dcf99b3c86994b.tar.gz |
testsdk.bbclass: Clean up comments, clarify image choices.
Make it clear that SDK testing can use any valid image.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/testsdk.bbclass | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 77c9203cf99..43342b1f251 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass @@ -4,13 +4,15 @@ # 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 +# To run SDK tests, run the commands: +# $ bitbake <image-name> -c populate_sdk +# $ bitbake <image-name> -c testsdk # -# For run eSDK tests you need to do, -# - bitbake core-image-sato -c populate_sdk_ext -# - bitbake core-image-sato -c testsdkext +# To run eSDK tests, run the commands: +# $ bitbake <image-name> -c populate_sdk_ext +# $ bitbake <image-name> -c testsdkext +# +# where "<image-name>" is an image like core-image-sato. TEST_LOG_DIR ?= "${WORKDIR}/testimage" TESTSDKLOCK = "${TMPDIR}/testsdk.lock" |