Enable verbose builds when running example build tests

pull/4530/head
Brian Daniels 2017-06-12 11:25:01 -05:00
parent f31ea01237
commit fd4cd43043
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ def compile_repos(config, toolchains, targets, examples):
example['features']):
print("Compiling %s for %s, %s" % (name, target, toolchain))
proc = subprocess.Popen(["mbed-cli", "compile", "-t", toolchain,
"-m", target, "--silent"])
"-m", target, "-v"])
proc.wait()
example_summary = "{} {} {}".format(name, target, toolchain)
if proc.returncode: