mirror of https://github.com/ARMmbed/mbed-os.git
50 lines
1.8 KiB
Python
50 lines
1.8 KiB
Python
# This build on top of test5 by adding a few libraries with their own configurations
|
|
# and overrides. The same targets are used for building and testing (base, b1, b2, both)
|
|
|
|
expected_results = {
|
|
"base": {
|
|
"desc": "override values based on labels with libs (no labels)",
|
|
"app.app1": "v_app1",
|
|
"app.app2": "v_app2",
|
|
"lib1.p1": "v_p1_lib1",
|
|
"lib1.p2": "v_p2_lib1",
|
|
"lib1.p3": "v_p3_lib1",
|
|
"lib2.p1": "v_p1_lib2",
|
|
"lib2.p2": "v_p2_lib2"
|
|
},
|
|
"b1": {
|
|
"desc": "override values based on labels with libs (first label)",
|
|
"app.app1": "v_app1[b1_label]",
|
|
"app.app2": "v_app2",
|
|
"lib1.p1": "v_p1_lib1[b1_label]",
|
|
"lib1.p2": "v_p2_lib1",
|
|
"lib1.p3": "v_p3_lib1",
|
|
"lib2.p1": "v_p1_lib2[b1_label]",
|
|
"lib2.p2": "v_p2_lib2[b1_label]"
|
|
},
|
|
"b2": {
|
|
"desc": "override values based on labels with libs (second label)",
|
|
"app.app1": "v_app1",
|
|
"app.app2": "v_app2[b2_label]",
|
|
"lib1.p1": "v_p1_lib1",
|
|
"lib1.p2": "v_p2_lib1[b2_label]",
|
|
"lib1.p3": "v_p3_lib1",
|
|
"lib2.p1": "v_p1_lib2[b2_label]",
|
|
"lib2.p2": "v_p2_lib2[b2_label]"
|
|
},
|
|
# The values for lib2.p1 and lib2.p2 illustrate how overriding on multiple
|
|
# labels work. In lib2, both lib2.p1 and lib2.p2 are overriden for both
|
|
# labels (b1_label and b2_label). However, since "b2_label" is specified
|
|
# after "b1_label", it sets the final values of the overrides.
|
|
"both": {
|
|
"desc": "override values based on labels with libs (both labels)",
|
|
"app.app1": "v_app1[b1_label]",
|
|
"app.app2": "v_app2[b2_label]",
|
|
"lib1.p1": "v_p1_lib1[b1_label]",
|
|
"lib1.p2": "v_p2_lib1[b2_label]",
|
|
"lib1.p3": "v_p3_lib1",
|
|
"lib2.p1": "v_p1_lib2[b2_label]",
|
|
"lib2.p2": "v_p2_lib2[b2_label]"
|
|
},
|
|
}
|