From fd1d661b391dfad1edaac937a17c1165f635031a Mon Sep 17 00:00:00 2001 From: Jiajun Xu Date: Thu, 8 Jul 2010 02:06:58 +0800 Subject: 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 --- meta/classes/image.bbclass | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/classes/image.bbclass') 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 @@ inherit rootfs_${IMAGE_PKGTYPE} +IMAGETEST ?= "dummy" +inherit imagetest-${IMAGETEST} + LICENSE = "MIT" PACKAGES = "" RDEPENDS += "${IMAGE_INSTALL}" -- cgit v1.2.3-54-g00ecf