From aebda11adf7f32bc448f1facdd9875605d4719ac Mon Sep 17 00:00:00 2001 From: Olli-Pekka Puolitaival Date: Fri, 30 Aug 2019 09:14:06 +0300 Subject: [PATCH] Use very verbose to see more details in case of problem --- 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 51002b3c36..df54d9a8e3 100644 --- a/tools/test/examples/examples_lib.py +++ b/tools/test/examples/examples_lib.py @@ -398,7 +398,7 @@ def compile_repos(config, toolchains, targets, profile, verbose, examples): valid_choices(example['toolchains'], toolchains), example['features']): - build_command = ["mbed-cli", "compile", "-t", toolchain, "-m", target] + (['-v'] if verbose else []) + build_command = ["mbed-cli", "compile", "-t", toolchain, "-m", target] + (['-vv'] if verbose else []) if profile: build_command.append("--profile") build_command.append(profile)