aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-05-13 12:10:25 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-05-14 11:04:51 -0700
commit4e9e35f3bd17a8f110ae1d3b40c8fbe04700120a (patch)
tree9867fa157519ce5d7bcc77143046ec5efdee949c /run_project_tests.py
parent93dc9cfcc3ef946680ebe4724977c4b93ffa4a0f (diff)
downloadmeson-4e9e35f3bd17a8f110ae1d3b40c8fbe04700120a.zip
meson-4e9e35f3bd17a8f110ae1d3b40c8fbe04700120a.tar.gz
meson-4e9e35f3bd17a8f110ae1d3b40c8fbe04700120a.tar.bz2
interpreterbase: Allow passing an extra message in feature/deprecation warnings
The intended use it to tell people the new thing to do.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 18731d6..bcfe05c 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -417,6 +417,7 @@ def _compare_output(expected: T.List[T.Dict[str, str]], output: str, desc: str)
match = bool(re.match(expected, actual))
else:
match = (expected == actual)
+ print(actual)
if match:
how, expected = next_expected(i)