diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2023-03-09 22:52:41 +0100 |
---|---|---|
committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2023-03-12 20:31:55 +0100 |
commit | d99728b2cafb3346679cb8733221c41149fdc760 (patch) | |
tree | db83a7c7b561e03303ebe311dedd16f43b3f2d14 /t/t0003-attributes.sh | |
parent | t0003: GETTEXT_POISON fix, part 1 (diff) | |
download | git-d99728b2cafb3346679cb8733221c41149fdc760.tar.xz git-d99728b2cafb3346679cb8733221c41149fdc760.zip |
t0003: GETTEXT_POISON fix, conclusion
In 3c50032ff528 (attr: ignore overly large gitattributes files,
2022-12-01), we backported a patch onto v2.30.* that was originally
based on a much newer version. The v2.30.* release train still has the
GETTEXT_POISON CI job, though, and hence needs `test_i18n*` in its
tests.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to '')
-rwxr-xr-x | t/t0003-attributes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0003-attributes.sh b/t/t0003-attributes.sh index 5bd9d9832d..57ba303de8 100755 --- a/t/t0003-attributes.sh +++ b/t/t0003-attributes.sh @@ -366,7 +366,7 @@ test_expect_success EXPENSIVE 'large attributes file ignored in tree' ' dd if=/dev/zero of=.gitattributes bs=101M count=1 2>/dev/null && git check-attr --all path >/dev/null 2>err && echo "warning: ignoring overly large gitattributes file ${SQ}.gitattributes${SQ}" >expect && - test_cmp expect err + test_i18ncmp expect err ' test_expect_success 'large attributes line ignored in index' ' |