diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-02-23 13:18:56 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-02-23 13:18:56 +0200 |
commit | 603625b61c7b1aa073a4008a5b6ce812b56f8015 (patch) | |
tree | 0ad7326e0e774ad2ecc80b07e85cdf9eca5ccfc6 /run_tests.py | |
parent | 816752f51a5fad8200eefe17908903ccd11bd014 (diff) | |
download | meson-603625b61c7b1aa073a4008a5b6ce812b56f8015.zip meson-603625b61c7b1aa073a4008a5b6ce812b56f8015.tar.gz meson-603625b61c7b1aa073a4008a5b6ce812b56f8015.tar.bz2 |
Builder -> Meson renaming.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py index 5892ec8..9343655 100755 --- a/run_tests.py +++ b/run_tests.py @@ -20,7 +20,7 @@ import os, subprocess, shutil, sys test_build_dir = 'work area' install_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'install dir') use_shell = len(sys.argv) > 1 -builder_command = './meson.py' +meson_command = './meson.py' if use_shell: generator_flags = ['--generator', 'shell'] compile_commands = ['compile.sh'] @@ -38,7 +38,7 @@ def run_test(testdir): os.mkdir(test_build_dir) os.mkdir(install_dir) print('Running test: ' + testdir) - gen_command = [builder_command, '--prefix', install_dir, testdir, test_build_dir] + generator_flags + gen_command = [meson_command, '--prefix', install_dir, testdir, test_build_dir] + generator_flags p = subprocess.Popen(gen_command) p.wait() if p.returncode != 0: |