diff options
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'] |