diff options
author | Eric Engestrom <eric.engestrom@imgtec.com> | 2017-10-31 10:10:35 +0000 |
---|---|---|
committer | Eric Engestrom <eric.engestrom@imgtec.com> | 2017-10-31 10:11:05 +0000 |
commit | 9b6214eb4d458bfeb9caa64f384df58c5bc393c6 (patch) | |
tree | d6be9662a3c6e66ace86b3a6a0d28adfa7dbfc81 | |
parent | 1556bae75a30cc9747f4a21b2de7547cb19d45a1 (diff) | |
download | meson-9b6214eb4d458bfeb9caa64f384df58c5bc393c6.zip meson-9b6214eb4d458bfeb9caa64f384df58c5bc393c6.tar.gz meson-9b6214eb4d458bfeb9caa64f384df58c5bc393c6.tar.bz2 |
mtest: print correct name in error message
-rw-r--r-- | mesonbuild/mtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py index 4e049a8..cba9fc3 100644 --- a/mesonbuild/mtest.py +++ b/mesonbuild/mtest.py @@ -619,6 +619,6 @@ def run(args): return th.doit() return th.run_special() except TestException as e: - print('Mesontest encountered an error:\n') + print('Meson test encountered an error:\n') print(e) return 1 |