aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-02-23 13:18:56 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-02-23 13:18:56 +0200
commit603625b61c7b1aa073a4008a5b6ce812b56f8015 (patch)
tree0ad7326e0e774ad2ecc80b07e85cdf9eca5ccfc6 /run_tests.py
parent816752f51a5fad8200eefe17908903ccd11bd014 (diff)
downloadmeson-603625b61c7b1aa073a4008a5b6ce812b56f8015.zip
meson-603625b61c7b1aa073a4008a5b6ce812b56f8015.tar.gz
meson-603625b61c7b1aa073a4008a5b6ce812b56f8015.tar.bz2
Builder -> Meson renaming.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
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: