From fd4cd430435462a1221779525a57e220b4bd850d Mon Sep 17 00:00:00 2001 From: Brian Daniels Date: Mon, 12 Jun 2017 11:25:01 -0500 Subject: [PATCH] Enable verbose builds when running example build tests --- tools/test/examples/examples_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/examples/examples_lib.py b/tools/test/examples/examples_lib.py index d5a4914288..b7621ee1d4 100644 --- a/tools/test/examples/examples_lib.py +++ b/tools/test/examples/examples_lib.py @@ -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: