mirror of https://github.com/ARMmbed/mbed-os.git
Fixed toolchain colummn order when using --config option
parent
ba4f09543f
commit
7d3ce4d65f
|
@ -893,7 +893,7 @@ def print_test_configuration_from_json(json_data, join_delim=", "):
|
||||||
target_name = target if target in TARGET_MAP else "%s*"% target
|
target_name = target if target in TARGET_MAP else "%s*"% target
|
||||||
row = [target_name]
|
row = [target_name]
|
||||||
toolchains = targets[target]
|
toolchains = targets[target]
|
||||||
for toolchain in toolchains_info_cols:
|
for toolchain in sorted(toolchains_info_cols):
|
||||||
# Check for conflicts
|
# Check for conflicts
|
||||||
conflict = False
|
conflict = False
|
||||||
if toolchain in toolchains:
|
if toolchain in toolchains:
|
||||||
|
@ -911,7 +911,7 @@ def print_test_configuration_from_json(json_data, join_delim=", "):
|
||||||
|
|
||||||
# generate result string
|
# generate result string
|
||||||
result = pt.get_string() # Test specification table
|
result = pt.get_string() # Test specification table
|
||||||
if toolchain_conflicts: # Print conflicts if the exist
|
if toolchain_conflicts: # Print conflicts if exist
|
||||||
result += "\n"
|
result += "\n"
|
||||||
result += "Toolchain conflicts:\n"
|
result += "Toolchain conflicts:\n"
|
||||||
for target in toolchain_conflicts:
|
for target in toolchain_conflicts:
|
||||||
|
|
Loading…
Reference in New Issue