diff options
author | Jiajun Xu <jiajun.xu@intel.com> | 2010-07-08 02:06:58 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-15 12:48:25 +0100 |
commit | fd1d661b391dfad1edaac937a17c1165f635031a (patch) | |
tree | 3bce526d67faf52385482f38c31679db05f6dbd5 /meta/classes/image.bbclass | |
parent | bd19169a60d5aaadc278439578d06c8027cfecf3 (diff) | |
download | poky-fd1d661b391dfad1edaac937a17c1165f635031a.tar.gz |
test: add automation framework and sanitytest
Automation test is disabled by default. User need set TESTCLASS
to qemu in conf/local.conf and run bitbake command "bitbake
poky-image-xxx" or "bitbake poky-image-xxx -c qemuimagetest" to
trigger it. Currently only the sanity test with two testcases are
added.
To run the test, user need prepare a testing environment:
1) "expect" should be installed on system
2) NOPASSWD should be set for user to run bitbake
Signed-off-by Jiajun Xu <jiajun.xu@intel.com>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 4a5b83e30b..7318ba9a28 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -1,5 +1,8 @@ | |||
1 | inherit rootfs_${IMAGE_PKGTYPE} | 1 | inherit rootfs_${IMAGE_PKGTYPE} |
2 | 2 | ||
3 | IMAGETEST ?= "dummy" | ||
4 | inherit imagetest-${IMAGETEST} | ||
5 | |||
3 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
4 | PACKAGES = "" | 7 | PACKAGES = "" |
5 | RDEPENDS += "${IMAGE_INSTALL}" | 8 | RDEPENDS += "${IMAGE_INSTALL}" |