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 16:06:23 +0000 |
commit | f895a61fc1e7c06ad168de181969feffe59c159d (patch) | |
tree | 391a62948e15e26abc449f4b369dfc67ee86f673 /meta | |
parent | e22fbce142b3c20ed0c6e363403eb6d33e395bc3 (diff) | |
download | poky-f895a61fc1e7c06ad168de181969feffe59c159d.tar.gz |
classes/testsdk: Add help information on how to run tests.
(From OE-Core rev: fcf0dc253f914418e15e2c6afc6f649b9270824a)
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')
-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 453ce4056d..487f40cea4 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass | |||
@@ -2,6 +2,16 @@ | |||
2 | # | 2 | # |
3 | # Released under the MIT license (see COPYING.MIT) | 3 | # Released under the MIT license (see COPYING.MIT) |
4 | 4 | ||
5 | # testsdk.bbclass enables testing for SDK and Extensible SDK | ||
6 | # | ||
7 | # For run SDK tests you need to do, | ||
8 | # - bitbake core-image-sato -c populate_sdk | ||
9 | # - bitbake core-image-sato -c testsdk | ||
10 | # | ||
11 | # For run eSDK tests you need to do, | ||
12 | # - bitbake core-image-sato -c populate_sdk_ext | ||
13 | # - bitbake core-image-sato -c testsdkext | ||
14 | |||
5 | TEST_LOG_DIR ?= "${WORKDIR}/testimage" | 15 | TEST_LOG_DIR ?= "${WORKDIR}/testimage" |
6 | TESTSDKLOCK = "${TMPDIR}/testsdk.lock" | 16 | TESTSDKLOCK = "${TMPDIR}/testsdk.lock" |
7 | 17 | ||