diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2017-08-21 18:23:12 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-23 14:12:39 +0100 |
commit | 5663ed989f0af5b1c61c74288ec421cbca2261e7 (patch) | |
tree | 1f8e5fbe520e34b2d4ad0308218e1efd16f97819 | |
parent | 164a0bd847f02ca65dcd53ddc789690060274191 (diff) | |
download | openembedded-core-5663ed989f0af5b1c61c74288ec421cbca2261e7.tar.gz openembedded-core-5663ed989f0af5b1c61c74288ec421cbca2261e7.tar.bz2 openembedded-core-5663ed989f0af5b1c61c74288ec421cbca2261e7.zip |
testimage.bbclass: update comments
It's very important to add IMAGE_CLASSES += "testimage" in local.conf firstly,
otherwise the var like TEST_LOG_DIR (defined in testimage.bbclass) will not be
in testdata.json.
[YOCTO #11547]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/testimage.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 0c4a84e111..6a43560422 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -7,8 +7,8 @@ # Most of the tests are commands run on target image over ssh. # To use it add testimage to global inherit and call your target image with -c testimage # You can try it out like this: -# - first build a qemu core-image-sato -# - add IMAGE_CLASSES += "testimage" in local.conf +# - first add IMAGE_CLASSES += "testimage" in local.conf +# - build a qemu core-image-sato # - then bitbake core-image-sato -c testimage. That will run a standard suite of tests. # You can set (or append to) TEST_SUITES in local.conf to select the tests |