diff options
author | Jiajun Xu <jiajun.xu@intel.com> | 2010-08-18 22:02:08 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 13:04:37 +0100 |
commit | 7303807ef13c0a02434941852530fecce8778619 (patch) | |
tree | b7e0db2a3f1a8dbace7e1069fc87a09b5b406094 /meta/conf/local.conf.sample | |
parent | 192d6994cb56ca3d1e93780d8d2544e54440d356 (diff) | |
download | poky-7303807ef13c0a02434941852530fecce8778619.tar.gz |
test: Add scenario file for each target and support single case running
Different test cases are needed for different targets. A folder "scenario"
is created under scripts/qemuimage-tests to hold scenario files for different
targets.
Single case running is supported now. User can run single case together with
a whole test suite by setting variable TEST_SCEN in local.conf.
By default test cases in sanity suite will be ran. If you want to run other
test suite or specific test case(e.g. bat or boot test case under sanity suite),
list them like following.
TEST_SCEN = "sanity bat sanity:boot"
Signed-off-by Jiajun Xu <jiajun.xu@intel.com>
Diffstat (limited to 'meta/conf/local.conf.sample')
-rw-r--r-- | meta/conf/local.conf.sample | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index 66acaa49a7..a06c7555c9 100644 --- a/meta/conf/local.conf.sample +++ b/meta/conf/local.conf.sample | |||
@@ -146,6 +146,7 @@ ENABLE_BINARY_LOCALE_GENERATION = "1" | |||
146 | # testing in qemu after do_rootfs. | 146 | # testing in qemu after do_rootfs. |
147 | #IMAGETEST = "qemu" | 147 | #IMAGETEST = "qemu" |
148 | 148 | ||
149 | # By default testing will run the sanitytest suite. If you want to run other tests | 149 | # By default test cases in sanity suite will be ran. If you want to run other |
150 | # (e.g. bat), list them here | 150 | # test suite or specific test case(e.g. bat or boot test case under sanity suite), |
151 | #TEST_SCEN = "sanitytest bat" | 151 | # list them like following. |
152 | #TEST_SCEN = "sanity bat sanity:boot" | ||