doc: document extra_configs option for testcases

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-10-17 09:00:33 -04:00 committed by Anas Nashif
commit ebc329dc30
2 changed files with 20 additions and 0 deletions

View file

@ -315,6 +315,22 @@ extra_args: <list of extra arguments>
Extra arguments to pass to Make when building or running the Extra arguments to pass to Make when building or running the
test case. test case.
extra_configs: <list of extra configurations>
Extra configuration options to be merged with a master prj.conf
when building or running the test case. For example::
common:
tags: drivers adc
tests:
- test:
depends_on: adc
- test_resolution_6:
extra_configs:
- CONFIG_ADC_QMSI_SAMPLE_WIDTH=6
platform_whitelist: quark_se_c1000_ss_devboard
tags: hwtest
build_only: <True|False> (default False) build_only: <True|False> (default False)
If true, don't try to run the test under QEMU even if the If true, don't try to run the test under QEMU even if the
selected platform supports it. selected platform supports it.

View file

@ -35,6 +35,10 @@ Each test block in the testcase meta data can define the following key/value pai
Extra arguments to pass to Make when building or running the Extra arguments to pass to Make when building or running the
test case. test case.
extra_configs: <list of extra configurations>
Extra configuration options to be merged with a master prj.conf
when building or running the test case.
build_only: <True|False> (default False) build_only: <True|False> (default False)
If true, don't try to run the test under QEMU even if the If true, don't try to run the test under QEMU even if the
selected platform supports it. selected platform supports it.