diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-14 01:10:19 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-14 15:54:57 +0300 |
commit | 5c8328d27f5a830b604dc8635815eee916a51971 (patch) | |
tree | bdc27f894a3fb0a8ba2c02c84357856efd481753 /run_unittests.py | |
parent | 55165ba504ce107c0636986087ba1139308d6fcb (diff) | |
download | meson-5c8328d27f5a830b604dc8635815eee916a51971.zip meson-5c8328d27f5a830b604dc8635815eee916a51971.tar.gz meson-5c8328d27f5a830b604dc8635815eee916a51971.tar.bz2 |
Use "meson test" in test invocations so it will not print the deprecation warning.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index 1f24847..06b3f4c 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -419,7 +419,7 @@ class BasePlatformTests(unittest.TestCase): self.meson_command = [sys.executable] + self.meson_args self.mconf_command = [sys.executable, os.path.join(src_root, 'meson.py'), 'configure'] self.mintro_command = [sys.executable, os.path.join(src_root, 'meson.py'), 'introspect'] - self.mtest_command = [sys.executable, os.path.join(src_root, 'mesontest.py'), '-C', self.builddir] + self.mtest_command = [sys.executable, os.path.join(src_root, 'meson.py'), 'test', '-C', self.builddir] # Backend-specific build commands self.build_command, self.clean_command, self.test_command, self.install_command, \ self.uninstall_command = get_backend_commands(self.backend) |