aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-09-04 15:50:30 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2020-09-08 20:15:59 +0200
commit8f95efe40b6af4b49b692d1875066759c44a009d (patch)
tree467e627b5870e84ce945c019fa279a0f41ab019e /run_tests.py
parent4253bf62814997bd2c985a2a72e86c260338fb4d (diff)
downloadmeson-8f95efe40b6af4b49b692d1875066759c44a009d.zip
meson-8f95efe40b6af4b49b692d1875066759c44a009d.tar.gz
meson-8f95efe40b6af4b49b692d1875066759c44a009d.tar.bz2
typing: fixup of #7688
This bug not beeing caught in review is another reason for adding strict typing support to meson.
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 2648e06..08ad78a 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -42,7 +42,7 @@ NINJA_CMD = None
# test that we run.
if 'CI' in os.environ:
NINJA_1_9_OR_NEWER = True
- NINJA_CMD = 'ninja'
+ NINJA_CMD = ['ninja']
else:
# Look for 1.9 to see if https://github.com/ninja-build/ninja/issues/1219
# is fixed
@@ -221,7 +221,7 @@ def get_backend_commands(backend, debug=False):
test_cmd = cmd + ['-target', 'RUN_TESTS']
elif backend is Backend.ninja:
global NINJA_CMD
- cmd = [NINJA_CMD, '-w', 'dupbuild=err', '-d', 'explain']
+ cmd = NINJA_CMD + ['-w', 'dupbuild=err', '-d', 'explain']
if debug:
cmd += ['-v']
clean_cmd = cmd + ['clean']