[build tools] Added test for configurations set from same level as feature

pull/1940/head
Christopher Haster 2016-06-14 19:51:35 -05:00
parent e70efe3a41
commit f45dc15aa8
4 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,8 @@
{
"name": "lib1",
"target_overrides": {
"*": {
"features_add": ["IPV6"]
}
}
}

View File

@ -0,0 +1,8 @@
{
"name": "lib2",
"config": {
"test": {
"value": "BAD"
}
}
}

View File

@ -0,0 +1,8 @@
{
"target_overrides": {
"*": {
"features_add": ["IPV4"],
"lib2.test": "GOOD"
}
}
}

View File

@ -0,0 +1,8 @@
# Testing if config settings work in recursive features
expected_results = {
"K64F": {
"desc": "test recursive feature configurations",
"lib2.test": "GOOD"
}
}