tests: add a new harness keyword to schema
This keyword would mean that a special harness is needed to run the tests sucessfully. This can be as simple as a loopback wiring or a complete hardware test setup for sensor and IO testing. It is free form initially and would be changed to be an enum once we have more values in place. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
9e91d910e8
commit
ab940163ee
2 changed files with 9 additions and 1 deletions
|
@ -38,6 +38,9 @@ mapping:
|
|||
"filter":
|
||||
type: str
|
||||
required: no
|
||||
"harness":
|
||||
type: str
|
||||
required: no
|
||||
"min_ram":
|
||||
type: int
|
||||
required: no
|
||||
|
@ -130,6 +133,9 @@ mapping:
|
|||
"filter":
|
||||
type: str
|
||||
required: no
|
||||
"harness":
|
||||
type: str
|
||||
required: no
|
||||
"min_ram":
|
||||
type: int
|
||||
required: no
|
||||
|
|
|
@ -1078,7 +1078,9 @@ testcase_valid_keys = {"tags": {"type": "set", "required": False},
|
|||
"platform_whitelist": {"type": "set"},
|
||||
"toolchain_exclude": {"type": "set"},
|
||||
"toolchain_whitelist": {"type": "set"},
|
||||
"filter": {"type": "str"}}
|
||||
"filter": {"type": "str"},
|
||||
"harness": {"type": "str"}
|
||||
}
|
||||
|
||||
|
||||
class SanityConfigParser:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue