summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/testsdk.bbclass10
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
5TEST_LOG_DIR ?= "${WORKDIR}/testimage" 15TEST_LOG_DIR ?= "${WORKDIR}/testimage"
6TESTSDKLOCK = "${TMPDIR}/testsdk.lock" 16TESTSDKLOCK = "${TMPDIR}/testsdk.lock"
7 17