aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2014-07-14 18:15:54 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2014-07-14 18:15:54 +0300
commit5df4e62dfd766b88788ca6f9ecdac2d5300b9018 (patch)
tree5cebf21e9760395fbc95f2da9145c5aff72bc8af
parente38f040661b56781bed8290e7ab357ccfbdf49ec (diff)
downloadmeson-5df4e62dfd766b88788ca6f9ecdac2d5300b9018.zip
meson-5df4e62dfd766b88788ca6f9ecdac2d5300b9018.tar.gz
meson-5df4e62dfd766b88788ca6f9ecdac2d5300b9018.tar.bz2
More verbosity.
-rwxr-xr-xrun_tests.py5
1 files changed, 4 insertions, 1 deletions
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']