From 5df4e62dfd766b88788ca6f9ecdac2d5300b9018 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 14 Jul 2014 18:15:54 +0300 Subject: More verbosity. --- run_tests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index 4062613..96dbbf2 100755 --- a/run_tests.py +++ b/run_tests.py @@ -46,7 +46,10 @@ else: ninja_command = environment.detect_ninja() if ninja_command is None: raise RuntimeError('Could not find Ninja executable.') - compile_commands = [ninja_command] + if print_debug: + compile_commands = [ninja_command, '-v'] + else: + compile_commands = [ninja_command] test_commands = [ninja_command, 'test'] install_commands = [ninja_command, 'install'] -- cgit v1.1