diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-11 01:53:23 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-20 23:08:17 +0200 |
commit | 5d51bc79c7555e681a0c638da9528458257744ae (patch) | |
tree | 9d8e24be05870144a8763a094a8b273fd657c262 /run_project_tests.py | |
parent | b3dfb80c15cae24c66d07425bb7a327528438a55 (diff) | |
download | meson-5d51bc79c7555e681a0c638da9528458257744ae.zip meson-5d51bc79c7555e681a0c638da9528458257744ae.tar.gz meson-5d51bc79c7555e681a0c638da9528458257744ae.tar.bz2 |
Replaced sys.executable use with the mesonlib equivalent.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index d3da4e6..27caabd 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -603,7 +603,7 @@ def check_meson_commands_work(): testdir = 'test cases/common/1 trivial' with AutoDeletedDir(tempfile.mkdtemp(prefix='b ', dir='.')) as build_dir: print('Checking that configuring works...') - gen_cmd = [sys.executable, meson_command, testdir, build_dir] + backend_flags + gen_cmd = mesonlib.meson_command + [testdir, build_dir] + backend_flags pc, o, e = Popen_safe(gen_cmd) if pc.returncode != 0: raise RuntimeError('Failed to configure {!r}:\n{}\n{}'.format(testdir, e, o)) |