Merge pull request #3518 from bridadan/fix_test_macros_with_app_json

Preventing app_config from clobbering CLI macros
pull/3550/head
Sam Grove 2017-01-09 10:23:14 -06:00 committed by GitHub
commit 2c6fe1fe06
1 changed files with 1 additions and 1 deletions

View File

@ -2133,7 +2133,7 @@ def build_tests(tests, base_source_paths, build_path, target, toolchain_name,
base_path = norm_relative_path(build_path, execution_directory)
target_name = target if isinstance(target, str) else target.name
cfg, macros, features = get_config(base_source_paths, target_name, toolchain_name)
cfg, _, _ = get_config(base_source_paths, target_name, toolchain_name)
baud_rate = 9600
if 'platform.stdio-baud-rate' in cfg: