diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-07-14 18:15:54 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-07-14 18:15:54 +0300 |
commit | 5df4e62dfd766b88788ca6f9ecdac2d5300b9018 (patch) | |
tree | 5cebf21e9760395fbc95f2da9145c5aff72bc8af /run_tests.py | |
parent | e38f040661b56781bed8290e7ab357ccfbdf49ec (diff) | |
download | meson-5df4e62dfd766b88788ca6f9ecdac2d5300b9018.zip meson-5df4e62dfd766b88788ca6f9ecdac2d5300b9018.tar.gz meson-5df4e62dfd766b88788ca6f9ecdac2d5300b9018.tar.bz2 |
More verbosity.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 5 |
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'] |