Merge pull request #9861 from 9999years/colored-diff-in-lang-tests

Color `diff` output in `tests/functional/lang` tests
This commit is contained in:
John Ericson 2024-01-26 22:31:00 -05:00 committed by GitHub
commit 1dc55c0f2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ function diffAndAcceptInner() {
fi
# Diff so we get a nice message
if ! diff --unified "$got" "$expectedOrEmpty"; then
if ! diff --color=always --unified "$expectedOrEmpty" "$got"; then
echo "FAIL: evaluation result of $testName not as expected"
badDiff=1
fi