Skip to content

Commit 332a67a

Browse files
committed
Moving LWIP feature to BOOTLOADER in config testing
1 parent da6ce02 commit 332a67a

File tree

15 files changed

+12
-12
lines changed

15 files changed

+12
-12
lines changed

tools/test/config/feature_compesition/lib1/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "lib1",
33
"target_overrides": {
44
"*": {
5-
"target.features_add": ["LWIP"]
5+
"target.features_add": ["BOOTLOADER"]
66
}
77
}
88
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"test_target": {
3-
"expected_features": ["LWIP", "STORAGE"]
3+
"expected_features": ["BOOTLOADER", "STORAGE"]
44
}
55
}

tools/test/config/feature_conflict/lib1/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "lib1",
33
"target_overrides": {
44
"*": {
5-
"target.features_add": ["LWIP"]
5+
"target.features_add": ["BOOTLOADER"]
66
}
77
}
88
}

tools/test/config/feature_conflict/lib2/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "lib2",
33
"target_overrides": {
44
"*": {
5-
"target.features_remove": ["LWIP"]
5+
"target.features_remove": ["BOOTLOADER"]
66
}
77
}
88
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"K64F": {
3-
"exception_msg": "Configuration conflict. The feature LWIP both added and removed."
3+
"exception_msg": "Configuration conflict. The feature BOOTLOADER both added and removed."
44
}
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"target_overrides": {
33
"*": {
4-
"target.features_add": ["LWIP"]
4+
"target.features_add": ["BOOTLOADER"]
55
}
66
}
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"test_target": {
3-
"expected_features": ["LWIP", "STORAGE"]
3+
"expected_features": ["BOOTLOADER", "STORAGE"]
44
}
55
}

tools/test/config/feature_recursive_complex/mbed_app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"target_overrides": {
33
"*": {
4-
"target.features_add": ["LWIP"],
4+
"target.features_add": ["BOOTLOADER"],
55
"lib2.test": "GOOD"
66
}
77
}

tools/test/config/feature_remove/lib1/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "lib1",
33
"target_overrides": {
44
"*": {
5-
"target.features_remove": ["LWIP"]
5+
"target.features_remove": ["BOOTLOADER"]
66
}
77
}
88
}

tools/test/config/feature_remove/targets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"supported_toolchains": ["GCC_ARM"],
44
"core": "Cortex-M0",
55
"extra_labels": [],
6-
"features": ["LWIP"],
6+
"features": ["BOOTLOADER"],
77
"default_lib": "std"
88
}
99
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"target_overrides": {
33
"*": {
4-
"target.features": ["LWIP"]
4+
"target.features": ["BOOTLOADER"]
55
}
66
}
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"test_target": {
3-
"expected_features": ["LWIP"]
3+
"expected_features": ["BOOTLOADER"]
44
}
55
}

0 commit comments

Comments
 (0)