summaryrefslogtreecommitdiff
path: root/t/t7508-status.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2017-06-04 10:20:56 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-06-04 10:20:56 +0900
commit6c940eb94d8c6ed75413826e067df78f30b5707f (patch)
tree9bda5cbac6466fe3f79afde37a98e4e79e776051 /t/t7508-status.sh
parentMerge branch 'ab/doc-replace-gmane-links' into maint (diff)
parenttravis-ci: add job to run tests with GETTEXT_POISON (diff)
downloadtgif-6c940eb94d8c6ed75413826e067df78f30b5707f.tar.xz
Merge branch 'ab/fix-poison-tests' into maint
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-xt/t7508-status.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t7508-status.sh b/t/t7508-status.sh
index fb00e6d9b0..5edcc6edfe 100755
--- a/t/t7508-status.sh
+++ b/t/t7508-status.sh
@@ -360,7 +360,7 @@ EOF
test_expect_success 'status -s -b' '
git status -s -b >output &&
- test_cmp expect output
+ test_i18ncmp expect output
'
@@ -370,7 +370,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' '
@@ -687,7 +687,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
'