mirror of https://github.com/ARMmbed/mbed-os.git
[build tools] Added test for configurations set from same level as feature
parent
e70efe3a41
commit
f45dc15aa8
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"name": "lib1",
|
||||
"target_overrides": {
|
||||
"*": {
|
||||
"features_add": ["IPV6"]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"name": "lib2",
|
||||
"config": {
|
||||
"test": {
|
||||
"value": "BAD"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"target_overrides": {
|
||||
"*": {
|
||||
"features_add": ["IPV4"],
|
||||
"lib2.test": "GOOD"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
# Testing if config settings work in recursive features
|
||||
|
||||
expected_results = {
|
||||
"K64F": {
|
||||
"desc": "test recursive feature configurations",
|
||||
"lib2.test": "GOOD"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue