aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-04-01 13:42:30 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-04-01 13:42:30 +0300
commite12100b7264c12a619ffa940a3e5022d5e992252 (patch)
tree7390fee760699285b8ce1c981618a663ac115aa0 /run_tests.py
parentf16bc7f6c4551085fa266452a3794db32e180a22 (diff)
downloadmeson-e12100b7264c12a619ffa940a3e5022d5e992252.zip
meson-e12100b7264c12a619ffa940a3e5022d5e992252.tar.gz
meson-e12100b7264c12a619ffa940a3e5022d5e992252.tar.bz2
Removed shell backend.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py8
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']