diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-04-01 13:42:30 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-04-01 13:42:30 +0300 |
commit | e12100b7264c12a619ffa940a3e5022d5e992252 (patch) | |
tree | 7390fee760699285b8ce1c981618a663ac115aa0 /run_tests.py | |
parent | f16bc7f6c4551085fa266452a3794db32e180a22 (diff) | |
download | meson-e12100b7264c12a619ffa940a3e5022d5e992252.zip meson-e12100b7264c12a619ffa940a3e5022d5e992252.tar.gz meson-e12100b7264c12a619ffa940a3e5022d5e992252.tar.bz2 |
Removed shell backend.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/run_tests.py b/run_tests.py index c7a7309..5ab0713 100755 --- a/run_tests.py +++ b/run_tests.py @@ -20,14 +20,8 @@ import environment 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 meson_command = './meson.py' -if use_shell: - backend_flags = ['--backend', 'shell'] - compile_commands = ['compile.sh'] - test_commands = ['run_tests.sh'] - install_commands = ['install.sh'] -else: +if True: # Currently we have only one backend. backend_flags = [] compile_commands = ['ninja'] test_commands = ['ninja', 'test'] |