diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2020-05-13 12:10:25 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-05-14 11:04:51 -0700 |
| commit | 4e9e35f3bd17a8f110ae1d3b40c8fbe04700120a (patch) | |
| tree | 9867fa157519ce5d7bcc77143046ec5efdee949c /run_project_tests.py | |
| parent | 93dc9cfcc3ef946680ebe4724977c4b93ffa4a0f (diff) | |
| download | meson-4e9e35f3bd17a8f110ae1d3b40c8fbe04700120a.tar.gz | |
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-x | run_project_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 18731d65a..bcfe05cea 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) |
