diff options
Diffstat (limited to 'mesontest.py')
-rwxr-xr-x | mesontest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mesontest.py b/mesontest.py index e0ba7c2..c2d39d6 100755 --- a/mesontest.py +++ b/mesontest.py @@ -16,9 +16,10 @@ # A tool to run tests in many different ways. -from mesonbuild import mesonmain, mlog +from mesonbuild import mesonmain import sys if __name__ == '__main__': - mlog.warning('This executable is deprecated, use "meson test" instead.') + print('Warning: This executable is deprecated. Use "meson test" instead.', + file=sys.stderr) sys.exit(mesonmain.run(['test'] + sys.argv[1:])) |