diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-20 13:58:20 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-20 13:58:20 +0300 |
commit | c7e7d1a4c354b21fe9308dd872a99ec4bc7356be (patch) | |
tree | 894ff3c672fdf0389d44951a75fd0e58986ce43a /run_tests.py | |
parent | c21637a01db7f6958c816bfe2a8b0383b96e8f68 (diff) | |
download | meson-c7e7d1a4c354b21fe9308dd872a99ec4bc7356be.zip meson-c7e7d1a4c354b21fe9308dd872a99ec4bc7356be.tar.gz meson-c7e7d1a4c354b21fe9308dd872a99ec4bc7356be.tar.bz2 |
Can execute found programs with run_command.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 4ca0659..83c79bb 100755 --- a/run_tests.py +++ b/run_tests.py @@ -25,7 +25,8 @@ test_build_dir = 'work area' install_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'install dir') meson_command = './meson.py' -unity_flags = ['--unity'] +#unity_flags = ['--unity'] +unity_flags = [] msbuild_exe = shutil.which('msbuild') if msbuild_exe is not None: |