Stop using the deprecated (and broken) `mesontest`.

`mesontest` command is deprecated since meson 0.42.0 and broken with last
release (0.44.0) (see mesonbuild/meson#2761).

Fix #97.
This commit is contained in:
Matthieu Gautier 2017-12-12 11:19:07 +00:00
parent 29157c96eb
commit 1c8b8ef99b
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ class BuildEnv:
self.meson_command = self._detect_meson() self.meson_command = self._detect_meson()
if not self.meson_command: if not self.meson_command:
sys.exit("ERROR: meson command not fount") sys.exit("ERROR: meson command not fount")
self.mesontest_command = "mesontest" self.mesontest_command = "meson test"
self.setup_build(options.target_platform) self.setup_build(options.target_platform)
self.setup_toolchains() self.setup_toolchains()
self.options = options self.options = options