diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-05-23 13:46:08 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-23 13:46:09 +0900 |
commit | 6a0bc7cf0efbefa5a949d958947e68e29534f04d (patch) | |
tree | b1b5d9c52347c73b2c9fa8fa2671506b9597e670 /t/t7508-status.sh | |
parent | d13686ff4d17119418a3aa6b901f9c0e640b25b8 (diff) | |
parent | b8e188f6f51fb016eba7eb8a76a109cdadbd4231 (diff) | |
download | git-6a0bc7cf0efbefa5a949d958947e68e29534f04d.tar.gz |
Merge branch 'ab/fix-poison-tests'
Update tests to pass under GETTEXT_POISON (a mechanism to ensure
that output strings that should not be translated are not
translated by mistake), and tell TravisCI to run them.
* ab/fix-poison-tests:
travis-ci: add job to run tests with GETTEXT_POISON
travis-ci: setup "prove cache" in "script" step
tests: fix tests broken under GETTEXT_POISON=YesPlease
Diffstat (limited to 't/t7508-status.sh')
-rwxr-xr-x | t/t7508-status.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t7508-status.sh b/t/t7508-status.sh index 567c4d4bab..79427840a4 100755 --- a/t/t7508-status.sh +++ b/t/t7508-status.sh @@ -392,7 +392,7 @@ EOF test_expect_success 'status -s -b' ' git status -s -b >output && - test_cmp expect output + test_i18ncmp expect output ' @@ -402,7 +402,7 @@ test_expect_success 'status -s -z -b' ' git status -s -z -b >output && nul_to_q <output >output.q && mv output.q output && - test_cmp expect output + test_i18ncmp expect output ' test_expect_success 'setup dir3' ' @@ -744,7 +744,7 @@ EOF test_expect_success 'status -s -b with color.status' ' git status -s -b | test_decode_color >output && - test_cmp expect output + test_i18ncmp expect output ' |