File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ def test_toolchain_profile_c(profile, source_file):
42
42
toolchain = tc_class (TARGET_MAP ["K64F" ], build_profile = profile )
43
43
toolchain .inc_md5 = ""
44
44
toolchain .build_dir = ""
45
+ toolchain .config = MagicMock (app_config_locaiton = None )
45
46
compile_command = toolchain .compile_command (to_compile ,
46
47
to_compile + ".o" , [])
47
48
for parameter in profile ['c' ] + profile ['common' ]:
@@ -67,6 +68,7 @@ def test_toolchain_profile_cpp(profile, source_file):
67
68
toolchain = tc_class (TARGET_MAP ["K64F" ], build_profile = profile )
68
69
toolchain .inc_md5 = ""
69
70
toolchain .build_dir = ""
71
+ toolchain .config = MagicMock (app_config_locaiton = None )
70
72
compile_command = toolchain .compile_command (to_compile ,
71
73
to_compile + ".o" , [])
72
74
for parameter in profile ['cxx' ] + profile ['common' ]:
You can’t perform that action at this time.
0 commit comments