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 /build | |
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 'build')
-rw-r--r-- | build/conf/local.conf.sample | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample index fc013bcd10..e58c476a7d 100644 --- a/build/conf/local.conf.sample +++ b/build/conf/local.conf.sample | |||
@@ -153,3 +153,11 @@ ENABLE_BINARY_LOCALE_GENERATION = "1" | |||
153 | # Poky can try and fetch packaged-staging packages from a http, https or ftp | 153 | # Poky can try and fetch packaged-staging packages from a http, https or ftp |
154 | # mirror. Set this variable to the root of a pstage directory on a server. | 154 | # mirror. Set this variable to the root of a pstage directory on a server. |
155 | #PSTAGE_MIRROR ?= "http://someserver.tld/share/pstage" | 155 | #PSTAGE_MIRROR ?= "http://someserver.tld/share/pstage" |
156 | |||
157 | # Set IMAGETEST to qemu if you want to build testcases and start | ||
158 | # testing in qemu after do_rootfs. | ||
159 | #IMAGETEST="qemu" | ||
160 | |||
161 | # By default testing will run the sanitytest suite. If you want to run other tests | ||
162 | # (e.g. bat), list them here | ||
163 | #TEST_SCEN="sanitytest bat" | ||