]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
test: add automation framework and sanitytest
authorJiajun Xu <jiajun.xu@intel.com>
Wed, 7 Jul 2010 18:06:58 +0000 (02:06 +0800)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 15 Jul 2010 11:48:25 +0000 (12:48 +0100)
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>

build/conf/local.conf.sample

index fc013bcd1009ddabe828f9b7cc750f07b6d632f8..e58c476a7dfb237b497ce464400b9fe5958f62c8 100644 (file)
@@ -153,3 +153,11 @@ ENABLE_BINARY_LOCALE_GENERATION = "1"
 # Poky can try and fetch packaged-staging packages from a http, https or ftp
 # mirror. Set this variable to the root of a pstage directory on a server.
 #PSTAGE_MIRROR ?= "http://someserver.tld/share/pstage"
+
+# Set IMAGETEST to qemu if you want to build testcases and start 
+# testing in qemu after do_rootfs.
+#IMAGETEST="qemu"
+
+# By default testing will run the sanitytest suite. If you want to run other tests
+# (e.g. bat), list them here
+#TEST_SCEN="sanitytest bat"