Improve unit testing output; fix issue with non-ascii output from embedded device // Issue #753

This commit is contained in:
Ivan Kravets
2016-08-21 19:27:38 +03:00
parent 3426c01955
commit 0f7f301787
5 changed files with 30 additions and 13 deletions
+1 -1
View File
@@ -258,7 +258,7 @@ def GetActualLDScript(env):
def ProgressHandler(env, node):
item = str(node)
if ("toolchain-" in item or "tool-" in item) or \
if "toolchain-" in item or "tool-" in item or \
item.endswith((".o", ".h", ".hpp", ".ipp")):
return
item = item.replace(env['PIOHOME_DIR'], ".platformio")