tests: teach callers of test_i18ngrep to use test_grep
They are equivalents and the former still exists, so as long as the
only change this commit makes are to rewrite test_i18ngrep to
test_grep, there won't be any new bug, even if there still are
callers of test_i18ngrep remaining in the tree, or when merged to
other topics that add new uses of test_i18ngrep.
This patch was produced more or less with
git grep -l -e 'test_i18ngrep ' 't/t[0-9][0-9][0-9][0-9]-*.sh' |
xargs perl -p -i -e 's/test_i18ngrep /test_grep /'
and a good way to sanity check the result yourself is to run the
above in a checkout of c4603c1c (test framework: further deprecate
test_i18ngrep, 2023-10-31) and compare the resulting working tree
contents with the result of applying this patch to the same commit.
You'll see that test_i18ngrep in a few t/lib-*.sh files corrected,
in addition to the manual reproduction.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committedOct 31, 2023 at 14:23 UTC6789275d3780bcb950e6be8557aeedf160d4ad6d
index 6187ec67fa..7139995a40 100755--- a/contrib/mw-to-git/t/t9363-mw-to-git-export-import.sh+++ b/contrib/mw-to-git/t/t9363-mw-to-git-export-import.sh@@ -161,7 +161,7 @@ test_expect_success 'git push properly warns about insufficient permissions' ' git add foo.forbidden && git commit -m "add a file" && git push 2>actual &&- test_i18ngrep "foo.forbidden is not a permitted file" actual+ test_grep "foo.forbidden is not a permitted file" actual ) '
t/lib-httpd.sh
+1-1
index 2fb1b2ae56..5fe3c8ab69 100644--- a/t/lib-httpd.sh+++ b/t/lib-httpd.sh@@ -255,7 +255,7 @@ test_http_push_nonff () { ' test_expect_success 'non-fast-forward push shows help message' '- test_i18ngrep "Updates were rejected because" output+ test_grep "Updates were rejected because" output ' test_expect_${EXPECT_CAS_RESULT} 'force with lease aka cas' '
index f6998269be..150cc1dea2 100755--- a/t/t0091-bugreport.sh+++ b/t/t0091-bugreport.sh@@ -65,7 +65,7 @@ test_expect_success '--output-directory puts the report in the provided dir' ' test_expect_success 'incorrect arguments abort with usage' ' test_must_fail git bugreport --false 2>output &&- test_i18ngrep usage output &&+ test_grep usage output && test_path_is_missing git-bugreport-* '
t/t0300-credentials.sh
+1-1
index a4f5bba507..400f6bdbca 100755--- a/t/t0300-credentials.sh+++ b/t/t0300-credentials.sh@@ -827,7 +827,7 @@ test_expect_success 'credential config with partial URLs' ' git -c credential.$partial.helper=yep \ -c credential.with%0anewline.username=uh-oh \ credential fill <stdin 2>stderr &&- test_i18ngrep "skipping credential lookup for key" stderr+ test_grep "skipping credential lookup for key" stderr ' test_done
t/t1060-object-corruption.sh
+1-1
index 35261afc9d..5e0f0a334f 100755--- a/t/t1060-object-corruption.sh+++ b/t/t1060-object-corruption.sh@@ -125,7 +125,7 @@ test_expect_success 'fetch into corrupted repo with index-pack' ' cd bit-error-cp && test_must_fail git -c transfer.unpackLimit=1 \ fetch ../no-bit-error 2>stderr &&- test_i18ngrep ! -i collision stderr+ test_grep ! -i collision stderr ) '
t/t1091-sparse-checkout-builtin.sh
+34-34
index 9ceb17f911..f67611da28 100755--- a/t/t1091-sparse-checkout-builtin.sh+++ b/t/t1091-sparse-checkout-builtin.sh@@ -47,7 +47,7 @@ test_expect_success 'setup' ' test_expect_success 'git sparse-checkout list (not sparse)' ' test_must_fail git -C repo sparse-checkout list >list 2>err && test_must_be_empty list &&- test_i18ngrep "this worktree is not sparse" err+ test_grep "this worktree is not sparse" err ' test_expect_success 'git sparse-checkout list (not sparse)' '@@ -55,7 +55,7 @@ test_expect_success 'git sparse-checkout list (not sparse)' ' rm repo/.git/info/sparse-checkout && git -C repo sparse-checkout list >list 2>err && test_must_be_empty list &&- test_i18ngrep "this worktree is not sparse (sparse-checkout file may not exist)" err+ test_grep "this worktree is not sparse (sparse-checkout file may not exist)" err ' test_expect_success 'git sparse-checkout list (populated)' '@@ -230,7 +230,7 @@ test_expect_success 'cone mode: match patterns' ' git -C repo config --worktree core.sparseCheckoutCone true && rm -rf repo/a repo/folder1 repo/folder2 && git -C repo read-tree -mu HEAD 2>err &&- test_i18ngrep ! "disabling cone patterns" err &&+ test_grep ! "disabling cone patterns" err && git -C repo reset --hard && check_files repo a folder1 folder2 '@@ -240,7 +240,7 @@ test_expect_success 'cone mode: warn on bad pattern' ' cp repo/.git/info/sparse-checkout . && echo "!/deep/deeper/*/" >>repo/.git/info/sparse-checkout && git -C repo read-tree -mu HEAD 2>err &&- test_i18ngrep "unrecognized negative pattern" err+ test_grep "unrecognized negative pattern" err ' test_expect_success 'sparse-checkout disable' '@@ -283,7 +283,7 @@ test_expect_success 'sparse-index enabled and disabled' ' test_expect_success 'cone mode: init and set' ' git -C repo sparse-checkout init --cone && git -C repo config --list >config &&- test_i18ngrep "core.sparsecheckoutcone=true" config &&+ test_grep "core.sparsecheckoutcone=true" config && list_files repo >dir && echo a >expect && test_cmp expect dir &&@@ -386,7 +386,7 @@ test_expect_success 'not-up-to-date does not block rest of sparsification' ' git -C repo sparse-checkout set deep/deeper1 2>err &&- test_i18ngrep "The following paths are not up to date" err &&+ test_grep "The following paths are not up to date" err && test_cmp expect repo/.git/info/sparse-checkout && check_files repo/deep a deeper1 deeper2 && check_files repo/deep/deeper1 a deepest &&@@ -401,8 +401,8 @@ test_expect_success 'revert to old sparse-checkout on empty update' ' git add file && git commit -m "test" && git sparse-checkout set nothing 2>err &&- test_i18ngrep ! "Sparse checkout leaves no entry on working directory" err &&- test_i18ngrep ! ".git/index.lock" err &&+ test_grep ! "Sparse checkout leaves no entry on working directory" err &&+ test_grep ! ".git/index.lock" err && git sparse-checkout set --no-cone file ) '@@ -411,14 +411,14 @@ test_expect_success 'fail when lock is taken' ' test_when_finished rm -rf repo/.git/info/sparse-checkout.lock && touch repo/.git/info/sparse-checkout.lock && test_must_fail git -C repo sparse-checkout set deep 2>err &&- test_i18ngrep "Unable to create .*\.lock" err+ test_grep "Unable to create .*\.lock" err ' test_expect_success '.gitignore should not warn about cone mode' ' git -C repo config --worktree core.sparseCheckoutCone true && echo "**/bin/*" >repo/.gitignore && git -C repo reset --hard 2>err &&- test_i18ngrep ! "disabling cone patterns" err+ test_grep ! "disabling cone patterns" err ' test_expect_success 'sparse-checkout (init|set|disable) warns with dirty status' '@@ -426,10 +426,10 @@ test_expect_success 'sparse-checkout (init|set|disable) warns with dirty status' echo dirty >dirty/folder1/a && git -C dirty sparse-checkout init --no-cone 2>err &&- test_i18ngrep "warning.*The following paths are not up to date" err &&+ test_grep "warning.*The following paths are not up to date" err && git -C dirty sparse-checkout set /folder2/* /deep/deeper1/* 2>err &&- test_i18ngrep "warning.*The following paths are not up to date" err &&+ test_grep "warning.*The following paths are not up to date" err && test_path_is_file dirty/folder1/a && git -C dirty sparse-checkout disable 2>err &&@@ -453,14 +453,14 @@ test_expect_success 'sparse-checkout (init|set|disable) warns with unmerged stat git -C unmerged update-index --index-info <input && git -C unmerged sparse-checkout init --no-cone 2>err &&- test_i18ngrep "warning.*The following paths are unmerged" err &&+ test_grep "warning.*The following paths are unmerged" err && git -C unmerged sparse-checkout set /folder2/* /deep/deeper1/* 2>err &&- test_i18ngrep "warning.*The following paths are unmerged" err &&+ test_grep "warning.*The following paths are unmerged" err && test_path_is_file dirty/folder1/a && git -C unmerged sparse-checkout disable 2>err &&- test_i18ngrep "warning.*The following paths are unmerged" err &&+ test_grep "warning.*The following paths are unmerged" err && git -C unmerged reset --hard && git -C unmerged sparse-checkout init --no-cone &&@@ -480,24 +480,24 @@ test_expect_failure 'sparse-checkout reapply' ' git -C tweak update-index --index-info <input && git -C tweak sparse-checkout init --cone 2>err &&- test_i18ngrep "warning.*The following paths are not up to date" err &&- test_i18ngrep "warning.*The following paths are unmerged" err &&+ test_grep "warning.*The following paths are not up to date" err &&+ test_grep "warning.*The following paths are unmerged" err && git -C tweak sparse-checkout set folder2 deep/deeper1 2>err &&- test_i18ngrep "warning.*The following paths are not up to date" err &&- test_i18ngrep "warning.*The following paths are unmerged" err &&+ test_grep "warning.*The following paths are not up to date" err &&+ test_grep "warning.*The following paths are unmerged" err && git -C tweak sparse-checkout reapply 2>err &&- test_i18ngrep "warning.*The following paths are not up to date" err &&+ test_grep "warning.*The following paths are not up to date" err && test_path_is_file tweak/deep/deeper2/a &&- test_i18ngrep "warning.*The following paths are unmerged" err &&+ test_grep "warning.*The following paths are unmerged" err && test_path_is_file tweak/folder1/a && git -C tweak checkout HEAD deep/deeper2/a && git -C tweak sparse-checkout reapply 2>err &&- test_i18ngrep ! "warning.*The following paths are not up to date" err &&+ test_grep ! "warning.*The following paths are not up to date" err && test_path_is_missing tweak/deep/deeper2/a &&- test_i18ngrep "warning.*The following paths are unmerged" err &&+ test_grep "warning.*The following paths are unmerged" err && test_path_is_file tweak/folder1/a && # NEEDSWORK: We are asking to update a file outside of the@@ -578,8 +578,8 @@ test_expect_success 'check-rules interaction with submodules' ' git -C super ls-tree --name-only -r HEAD >all-files && git -C super sparse-checkout check-rules >check-rules-matches <all-files &&- test_i18ngrep ! "modules/" check-rules-matches &&- test_i18ngrep "folder1/" check-rules-matches+ test_grep ! "modules/" check-rules-matches &&+ test_grep "folder1/" check-rules-matches ' test_expect_success 'different sparse-checkouts with worktrees' '@@ -616,7 +616,7 @@ check_read_tree_errors () { then test_must_be_empty err else- test_i18ngrep "$ERRORS" err+ test_grep "$ERRORS" err fi && check_files $REPO $FILES }@@ -898,32 +898,32 @@ test_expect_success 'setup bare repo' ' ' test_expect_success 'list fails outside work tree' ' test_must_fail git -C bare sparse-checkout list 2>err &&- test_i18ngrep "this operation must be run in a work tree" err+ test_grep "this operation must be run in a work tree" err ' test_expect_success 'add fails outside work tree' ' test_must_fail git -C bare sparse-checkout add deeper 2>err &&- test_i18ngrep "this operation must be run in a work tree" err+ test_grep "this operation must be run in a work tree" err ' test_expect_success 'set fails outside work tree' ' test_must_fail git -C bare sparse-checkout set deeper 2>err &&- test_i18ngrep "this operation must be run in a work tree" err+ test_grep "this operation must be run in a work tree" err ' test_expect_success 'init fails outside work tree' ' test_must_fail git -C bare sparse-checkout init 2>err &&- test_i18ngrep "this operation must be run in a work tree" err+ test_grep "this operation must be run in a work tree" err ' test_expect_success 'reapply fails outside work tree' ' test_must_fail git -C bare sparse-checkout reapply 2>err &&- test_i18ngrep "this operation must be run in a work tree" err+ test_grep "this operation must be run in a work tree" err ' test_expect_success 'disable fails outside work tree' ' test_must_fail git -C bare sparse-checkout disable 2>err &&- test_i18ngrep "this operation must be run in a work tree" err+ test_grep "this operation must be run in a work tree" err ' test_expect_success 'setup clean' '@@ -946,8 +946,8 @@ test_expect_success 'check-rules cone mode' ' git -C repo sparse-checkout check-rules >check-rules-default <all-files &&- test_i18ngrep "deep/deeper1/deepest/a" check-rules-file &&- test_i18ngrep ! "deep/deeper2" check-rules-file &&+ test_grep "deep/deeper1/deepest/a" check-rules-file &&+ test_grep ! "deep/deeper2" check-rules-file && test_cmp check-rules-file ls-files && test_cmp check-rules-file check-rules-default
t/t1092-sparse-checkout-compatibility.sh
+3-3
index 8a95adf4b5..12e971b1d1 100755--- a/t/t1092-sparse-checkout-compatibility.sh+++ b/t/t1092-sparse-checkout-compatibility.sh@@ -337,8 +337,8 @@ test_expect_success 'status reports sparse-checkout' ' init_repos && git -C sparse-checkout status >full && git -C sparse-index status >sparse &&- test_i18ngrep "You are in a sparse checkout with " full &&- test_i18ngrep "You are in a sparse checkout." sparse+ test_grep "You are in a sparse checkout with " full &&+ test_grep "You are in a sparse checkout." sparse ' test_expect_success 'add, commit, checkout' '@@ -1182,7 +1182,7 @@ test_expect_success 'checkout-index outside sparse definition' ' # Without --ignore-skip-worktree-bits, outside-of-cone files will trigger # an error test_sparse_match test_must_fail git checkout-index -- folder1/a &&- test_i18ngrep "folder1/a has skip-worktree enabled" sparse-checkout-err &&+ test_grep "folder1/a has skip-worktree enabled" sparse-checkout-err && test_path_is_missing folder1/a && # With --ignore-skip-worktree-bits, outside-of-cone files are checked out
t/t1300-config.sh
+22-22
index 387d336c91..f4e2752134 100755--- a/t/t1300-config.sh+++ b/t/t1300-config.sh@@ -453,7 +453,7 @@ test_expect_success 'get bool variable with empty value' ' test_expect_success 'no arguments, but no crash' ' test_must_fail git config >output 2>&1 &&- test_i18ngrep usage output+ test_grep usage output ' cat > .git/config << EOF@@ -720,25 +720,25 @@ test_expect_success 'invalid unit' ' git config aninvalid.unit "1auto" && test_cmp_config 1auto aninvalid.unit && test_must_fail git config --int --get aninvalid.unit 2>actual &&- test_i18ngrep "bad numeric config value .1auto. for .aninvalid.unit. in file .git/config: invalid unit" actual+ test_grep "bad numeric config value .1auto. for .aninvalid.unit. in file .git/config: invalid unit" actual ' test_expect_success 'invalid unit boolean' ' git config commit.gpgsign "1true" && test_cmp_config 1true commit.gpgsign && test_must_fail git config --bool --get commit.gpgsign 2>actual &&- test_i18ngrep "bad boolean config value .1true. for .commit.gpgsign." actual+ test_grep "bad boolean config value .1true. for .commit.gpgsign." actual ' test_expect_success 'line number is reported correctly' ' printf "[bool]\n\tvar\n" >invalid && test_must_fail git config -f invalid --path bool.var 2>actual &&- test_i18ngrep "line 2" actual+ test_grep "line 2" actual ' test_expect_success 'invalid stdin config' ' echo "[broken" | test_must_fail git config --list --file - >output 2>&1 &&- test_i18ngrep "bad config line 1 in standard input" output+ test_grep "bad config line 1 in standard input" output ' cat > expect << EOF@@ -919,7 +919,7 @@ test_expect_success !MINGW 'get --path copes with unset $HOME' ' git config --get --path path.normal >>result && git config --get --path path.trailingtilde >>result ) &&- test_i18ngrep "[Ff]ailed to expand.*~/" msg &&+ test_grep "[Ff]ailed to expand.*~/" msg && test_cmp expect result '@@ -986,7 +986,7 @@ test_expect_success 'get --type=color barfs on non-color' ' test_expect_success 'set --type=color barfs on non-color' ' test_must_fail git config --type=color foo.color "not-a-color" 2>error &&- test_i18ngrep "cannot parse color" error+ test_grep "cannot parse color" error ' cat > expect << EOF@@ -1447,12 +1447,12 @@ test_expect_success 'git --config-env with missing value' ' test_expect_success 'git --config-env fails with invalid parameters' ' test_must_fail git --config-env=foo.flag config --bool foo.flag 2>error &&- test_i18ngrep "invalid config format: foo.flag" error &&+ test_grep "invalid config format: foo.flag" error && test_must_fail git --config-env=foo.flag= config --bool foo.flag 2>error &&- test_i18ngrep "missing environment variable name for configuration ${SQ}foo.flag${SQ}" error &&+ test_grep "missing environment variable name for configuration ${SQ}foo.flag${SQ}" error && sane_unset NONEXISTENT && test_must_fail git --config-env=foo.flag=NONEXISTENT config --bool foo.flag 2>error &&- test_i18ngrep "missing environment variable ${SQ}NONEXISTENT${SQ} for configuration ${SQ}foo.flag${SQ}" error+ test_grep "missing environment variable ${SQ}NONEXISTENT${SQ} for configuration ${SQ}foo.flag${SQ}" error ' test_expect_success 'git -c and --config-env work together' '@@ -1533,21 +1533,21 @@ test_expect_success 'git config ignores pairs with empty count' ' test_expect_success 'git config fails with invalid count' ' test_must_fail env GIT_CONFIG_COUNT=10a git config --list 2>error &&- test_i18ngrep "bogus count" error &&+ test_grep "bogus count" error && test_must_fail env GIT_CONFIG_COUNT=9999999999999999 git config --list 2>error &&- test_i18ngrep "too many entries" error+ test_grep "too many entries" error ' test_expect_success 'git config fails with missing config key' ' test_must_fail env GIT_CONFIG_COUNT=1 GIT_CONFIG_VALUE_0="value" \ git config --list 2>error &&- test_i18ngrep "missing config key" error+ test_grep "missing config key" error ' test_expect_success 'git config fails with missing config value' ' test_must_fail env GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0="pair.one" \ git config --list 2>error &&- test_i18ngrep "missing config value" error+ test_grep "missing config value" error ' test_expect_success 'git config fails with invalid config pair key' '@@ -1617,7 +1617,7 @@ test_expect_success 'barf on syntax error' ' key garbage EOF test_must_fail git config --get section.key 2>error &&- test_i18ngrep " line 3 " error+ test_grep " line 3 " error ' test_expect_success 'barf on incomplete section header' '@@ -1627,7 +1627,7 @@ test_expect_success 'barf on incomplete section header' ' key = value EOF test_must_fail git config --get section.key 2>error &&- test_i18ngrep " line 2 " error+ test_grep " line 2 " error ' test_expect_success 'barf on incomplete string' '@@ -1637,7 +1637,7 @@ test_expect_success 'barf on incomplete string' ' key = "value string EOF test_must_fail git config --get section.key 2>error &&- test_i18ngrep " line 3 " error+ test_grep " line 3 " error ' test_expect_success 'urlmatch' '@@ -2266,17 +2266,17 @@ test_expect_success 'identical mixed --type specifiers are allowed' ' test_expect_success 'non-identical modern --type specifiers are not allowed' ' test_must_fail git config --type=int --type=bool section.big 2>error &&- test_i18ngrep "only one type at a time" error+ test_grep "only one type at a time" error ' test_expect_success 'non-identical legacy --type specifiers are not allowed' ' test_must_fail git config --int --bool section.big 2>error &&- test_i18ngrep "only one type at a time" error+ test_grep "only one type at a time" error ' test_expect_success 'non-identical mixed --type specifiers are not allowed' ' test_must_fail git config --type=int --bool section.big 2>error &&- test_i18ngrep "only one type at a time" error+ test_grep "only one type at a time" error ' test_expect_success '--type allows valid type specifiers' '@@ -2293,7 +2293,7 @@ test_expect_success 'unset type specifiers may be reset to conflicting ones' ' test_expect_success '--type rejects unknown specifiers' ' test_must_fail git config --type=nonsense section.foo 2>error &&- test_i18ngrep "unrecognized --type argument" error+ test_grep "unrecognized --type argument" error ' test_expect_success '--type=int requires at least one digit' '@@ -2339,7 +2339,7 @@ test_expect_success 'set all config with value-pattern' ' # multiple matches => failure test_must_fail git config --file=config abc.key three o+ 2>err &&- test_i18ngrep "has multiple values" err &&+ test_grep "has multiple values" err && # multiple values, no match => add git config --file=config abc.key three a+ &&
index 777648722c..3bfec07f1a 100755--- a/t/t1308-config-set.sh+++ b/t/t1308-config-set.sh@@ -172,7 +172,7 @@ test_expect_success 'find string value for a key' ' test_expect_success 'check line error when NULL string is queried' ' test_expect_code 128 test-tool config get_string case.foo 2>result &&- test_i18ngrep "fatal: .*case\.foo.*\.git/config.*line 7" result+ test_grep "fatal: .*case\.foo.*\.git/config.*line 7" result ' test_expect_success 'find integer if value is non parse-able' '@@ -342,14 +342,14 @@ test_expect_success 'check line errors for malformed values' ' br EOF test_expect_code 128 git br 2>result &&- test_i18ngrep "missing value for .alias\.br" result &&- test_i18ngrep "fatal: .*\.git/config" result &&- test_i18ngrep "fatal: .*line 2" result+ test_grep "missing value for .alias\.br" result &&+ test_grep "fatal: .*\.git/config" result &&+ test_grep "fatal: .*line 2" result ' test_expect_success 'error on modifying repo config without repo' ' nongit test_must_fail git config a.b c 2>err &&- test_i18ngrep "not in a git directory" err+ test_grep "not in a git directory" err ' cmdline_config="'foo.bar=from-cmdline'"
index 5805d47eb9..e2b30fb75e 100755--- a/t/t1450-fsck.sh+++ b/t/t1450-fsck.sh@@ -118,7 +118,7 @@ test_expect_success 'branch pointing to non-commit' ' git rev-parse HEAD^{tree} >.git/refs/heads/invalid && test_when_finished "git update-ref -d refs/heads/invalid" && test_must_fail git fsck 2>out &&- test_i18ngrep "not a commit" out+ test_grep "not a commit" out ' test_expect_success 'HEAD link pointing at a funny object' '@@ -127,7 +127,7 @@ test_expect_success 'HEAD link pointing at a funny object' ' echo $ZERO_OID >.git/HEAD && # avoid corrupt/broken HEAD from interfering with repo discovery test_must_fail env GIT_DIR=.git git fsck 2>out &&- test_i18ngrep "detached HEAD points" out+ test_grep "detached HEAD points" out ' test_expect_success 'HEAD link pointing at a funny place' '@@ -136,7 +136,7 @@ test_expect_success 'HEAD link pointing at a funny place' ' echo "ref: refs/funny/place" >.git/HEAD && # avoid corrupt/broken HEAD from interfering with repo discovery test_must_fail env GIT_DIR=.git git fsck 2>out &&- test_i18ngrep "HEAD points to something strange" out+ test_grep "HEAD points to something strange" out ' test_expect_success 'HEAD link pointing at a funny object (from different wt)' '@@ -147,7 +147,7 @@ test_expect_success 'HEAD link pointing at a funny object (from different wt)' ' echo $ZERO_OID >.git/HEAD && # avoid corrupt/broken HEAD from interfering with repo discovery test_must_fail git -C wt fsck 2>out &&- test_i18ngrep "main-worktree/HEAD: detached HEAD points" out+ test_grep "main-worktree/HEAD: detached HEAD points" out ' test_expect_success 'other worktree HEAD link pointing at a funny object' '@@ -155,7 +155,7 @@ test_expect_success 'other worktree HEAD link pointing at a funny object' ' git worktree add other && echo $ZERO_OID >.git/worktrees/other/HEAD && test_must_fail git fsck 2>out &&- test_i18ngrep "worktrees/other/HEAD: detached HEAD points" out+ test_grep "worktrees/other/HEAD: detached HEAD points" out ' test_expect_success 'other worktree HEAD link pointing at missing object' '@@ -163,7 +163,7 @@ test_expect_success 'other worktree HEAD link pointing at missing object' ' git worktree add other && echo "Contents missing from repo" | git hash-object --stdin >.git/worktrees/other/HEAD && test_must_fail git fsck 2>out &&- test_i18ngrep "worktrees/other/HEAD: invalid sha1 pointer" out+ test_grep "worktrees/other/HEAD: invalid sha1 pointer" out ' test_expect_success 'other worktree HEAD link pointing at a funny place' '@@ -171,7 +171,7 @@ test_expect_success 'other worktree HEAD link pointing at a funny place' ' git worktree add other && echo "ref: refs/funny/place" >.git/worktrees/other/HEAD && test_must_fail git fsck 2>out &&- test_i18ngrep "worktrees/other/HEAD points to something strange" out+ test_grep "worktrees/other/HEAD points to something strange" out ' test_expect_success 'commit with multiple signatures is okay' '@@ -217,7 +217,7 @@ test_expect_success 'email with embedded > is not okay' ' git update-ref refs/heads/bogus "$new" && test_when_finished "git update-ref -d refs/heads/bogus" && test_must_fail git fsck 2>out &&- test_i18ngrep "error in commit $new" out+ test_grep "error in commit $new" out ' test_expect_success 'missing < email delimiter is reported nicely' '@@ -228,7 +228,7 @@ test_expect_success 'missing < email delimiter is reported nicely' ' git update-ref refs/heads/bogus "$new" && test_when_finished "git update-ref -d refs/heads/bogus" && test_must_fail git fsck 2>out &&- test_i18ngrep "error in commit $new.* - bad name" out+ test_grep "error in commit $new.* - bad name" out ' test_expect_success 'missing email is reported nicely' '@@ -239,7 +239,7 @@ test_expect_success 'missing email is reported nicely' ' git update-ref refs/heads/bogus "$new" && test_when_finished "git update-ref -d refs/heads/bogus" && test_must_fail git fsck 2>out &&- test_i18ngrep "error in commit $new.* - missing email" out+ test_grep "error in commit $new.* - missing email" out ' test_expect_success '> in name is reported' '@@ -250,7 +250,7 @@ test_expect_success '> in name is reported' ' git update-ref refs/heads/bogus "$new" && test_when_finished "git update-ref -d refs/heads/bogus" && test_must_fail git fsck 2>out &&- test_i18ngrep "error in commit $new" out+ test_grep "error in commit $new" out ' # date is 2^64 + 1@@ -263,7 +263,7 @@ test_expect_success 'integer overflow in timestamps is reported' ' git update-ref refs/heads/bogus "$new" && test_when_finished "git update-ref -d refs/heads/bogus" && test_must_fail git fsck 2>out &&- test_i18ngrep "error in commit $new.*integer overflow" out+ test_grep "error in commit $new.*integer overflow" out ' test_expect_success 'commit with NUL in header' '@@ -274,7 +274,7 @@ test_expect_success 'commit with NUL in header' ' git update-ref refs/heads/bogus "$new" && test_when_finished "git update-ref -d refs/heads/bogus" && test_must_fail git fsck 2>out &&- test_i18ngrep "error in commit $new.*unterminated header: NUL at offset" out+ test_grep "error in commit $new.*unterminated header: NUL at offset" out ' test_expect_success 'tree object with duplicate entries' '@@ -295,7 +295,7 @@ test_expect_success 'tree object with duplicate entries' ' git hash-object --literally -w -t tree --stdin ) && test_must_fail git fsck 2>out &&- test_i18ngrep "error in tree .*contains duplicate file entries" out+ test_grep "error in tree .*contains duplicate file entries" out ' check_duplicate_names () {@@ -318,8 +318,8 @@ check_duplicate_names () { done >badtree && badtree=$(git mktree <badtree) && test_must_fail git fsck 2>out &&- test_i18ngrep "$badtree" out &&- test_i18ngrep "error in tree .*contains duplicate file entries" out+ test_grep "$badtree" out &&+ test_grep "error in tree .*contains duplicate file entries" out ' }@@ -341,9 +341,9 @@ test_expect_success 'unparseable tree object' ' commit_sha1=$(git commit-tree $tree_sha1) && git update-ref refs/heads/wrong $commit_sha1 && test_must_fail git fsck 2>out &&- test_i18ngrep "error: empty filename in tree entry" out &&- test_i18ngrep "$tree_sha1" out &&- test_i18ngrep ! "fatal: empty filename in tree entry" out+ test_grep "error: empty filename in tree entry" out &&+ test_grep "$tree_sha1" out &&+ test_grep ! "fatal: empty filename in tree entry" out ' test_expect_success 'tree entry with type mismatch' '@@ -360,8 +360,8 @@ test_expect_success 'tree entry with type mismatch' ' commit=$(git commit-tree $tree) && git update-ref refs/heads/type_mismatch $commit && test_must_fail git fsck >out 2>&1 &&- test_i18ngrep "is a blob, not a tree" out &&- test_i18ngrep ! "dangling blob" out+ test_grep "is a blob, not a tree" out &&+ test_grep ! "dangling blob" out ' test_expect_success 'tree entry with bogus mode' '@@ -394,7 +394,7 @@ test_expect_success 'tag pointing to nonexistent' ' echo $tag >.git/refs/tags/invalid && test_when_finished "git update-ref -d refs/tags/invalid" && test_must_fail git fsck --tags >out &&- test_i18ngrep "broken link" out+ test_grep "broken link" out ' test_expect_success 'tag pointing to something else than its type' '@@ -455,7 +455,7 @@ test_expect_success 'tag with bad tagger' ' echo $tag >.git/refs/tags/wrong && test_when_finished "git update-ref -d refs/tags/wrong" && test_must_fail git fsck --tags 2>out &&- test_i18ngrep "error in tag .*: invalid author/committer" out+ test_grep "error in tag .*: invalid author/committer" out ' test_expect_success 'tag with NUL in header' '@@ -474,7 +474,7 @@ test_expect_success 'tag with NUL in header' ' echo $tag >.git/refs/tags/wrong && test_when_finished "git update-ref -d refs/tags/wrong" && test_must_fail git fsck --tags 2>out &&- test_i18ngrep "error in tag $tag.*unterminated header: NUL at offset" out+ test_grep "error in tag $tag.*unterminated header: NUL at offset" out ' test_expect_success 'cleaned up' '@@ -504,7 +504,7 @@ test_expect_success 'rev-list --verify-objects with bad sha1' ' test_when_finished "git update-ref -d refs/heads/bogus" && test_might_fail git rev-list --verify-objects refs/heads/bogus >/dev/null 2>out &&- test_i18ngrep -q "error: hash mismatch $(dirname $new)$(test_oid ff_2)" out+ test_grep -q "error: hash mismatch $(dirname $new)$(test_oid ff_2)" out ' # An actual bit corruption is more likely than swapped commits, but@@ -575,7 +575,7 @@ test_expect_success 'fsck notices blob entry pointing to null sha1' ' sha=$(printf "100644 file$_bz$_bzoid" | git hash-object --literally -w --stdin -t tree) && git fsck 2>out &&- test_i18ngrep "warning.*null sha1" out+ test_grep "warning.*null sha1" out ) '@@ -585,7 +585,7 @@ test_expect_success 'fsck notices submodule entry pointing to null sha1' ' sha=$(printf "160000 submodule$_bz$_bzoid" | git hash-object --literally -w --stdin -t tree) && git fsck 2>out &&- test_i18ngrep "warning.*null sha1" out+ test_grep "warning.*null sha1" out ) '@@ -606,7 +606,7 @@ while read name path pretty; do printf "$mode $type %s\t%s" "$value" "$path" >bad && bad_tree=$(git mktree <bad) && git fsck 2>out &&- test_i18ngrep "warning.*tree $bad_tree" out+ test_grep "warning.*tree $bad_tree" out )' done <<-\EOF 100644 blob@@ -652,9 +652,9 @@ test_expect_success 'NUL in commit' ' git branch bad $(cat name) && test_must_fail git -c fsck.nulInCommit=error fsck 2>warn.1 &&- test_i18ngrep nulInCommit warn.1 &&+ test_grep nulInCommit warn.1 && git fsck 2>warn.2 &&- test_i18ngrep nulInCommit warn.2+ test_grep nulInCommit warn.2 ) '@@ -774,7 +774,7 @@ test_expect_success 'fsck --name-objects' ' tree=$(git rev-parse --verify julius:) && git tag -d julius && test_must_fail git fsck --name-objects >out &&- test_i18ngrep "$tree (refs/tags/augustus44\\^:" out+ test_grep "$tree (refs/tags/augustus44\\^:" out ) '@@ -787,7 +787,7 @@ test_expect_success 'alternate objects are correctly blamed' ' mkdir alt.git/objects/$(dirname $path) && >alt.git/objects/$(dirname $path)/$(basename $path) && test_must_fail git fsck >out 2>&1 &&- test_i18ngrep alt.git out+ test_grep alt.git out ' test_expect_success 'fsck errors in packed objects' '@@ -806,8 +806,8 @@ test_expect_success 'fsck errors in packed objects' ' remove_object $one && remove_object $two && test_must_fail git fsck 2>out &&- test_i18ngrep "error in commit $one.* - bad name" out &&- test_i18ngrep "error in commit $two.* - bad name" out &&+ test_grep "error in commit $one.* - bad name" out &&+ test_grep "error in commit $two.* - bad name" out && ! grep corrupt out '@@ -824,7 +824,7 @@ test_expect_success 'fsck fails on corrupt packfile' ' test_when_finished "rm -f .git/objects/pack/pack-$pack.*" && remove_object $hsh && test_must_fail git fsck 2>out &&- test_i18ngrep "checksum mismatch" out+ test_grep "checksum mismatch" out ' test_expect_success 'fsck finds problems in duplicate loose objects' '@@ -861,7 +861,7 @@ test_expect_success 'fsck detects trailing loose garbage (commit)' ' chmod +w "$file" && echo garbage >>"$file" && test_must_fail git fsck 2>out &&- test_i18ngrep "garbage.*$commit" out+ test_grep "garbage.*$commit" out ' test_expect_success 'fsck detects trailing loose garbage (large blob)' '@@ -871,7 +871,7 @@ test_expect_success 'fsck detects trailing loose garbage (large blob)' ' chmod +w "$file" && echo garbage >>"$file" && test_must_fail git -c core.bigfilethreshold=5 fsck 2>out &&- test_i18ngrep "garbage.*$blob" out+ test_grep "garbage.*$blob" out ' test_expect_success 'fsck detects truncated loose object' '@@ -887,10 +887,10 @@ test_expect_success 'fsck detects truncated loose object' ' # check both regular and streaming code paths test_must_fail git fsck 2>out &&- test_i18ngrep corrupt.*$blob out &&+ test_grep corrupt.*$blob out && test_must_fail git -c core.bigfilethreshold=128 fsck 2>out &&- test_i18ngrep corrupt.*$blob out+ test_grep corrupt.*$blob out ' # for each of type, we have one version which is referenced by another object@@ -979,7 +979,7 @@ test_expect_success 'detect corrupt index file in fsck' ' test_when_finished "mv .git/index.backup .git/index" && corrupt_index_checksum && test_must_fail git fsck --cache 2>errors &&- test_i18ngrep "bad index file" errors+ test_grep "bad index file" errors ' test_expect_success 'fsck error and recovery on invalid object type' '
t/t1506-rev-parse-diagnosis.sh
+17-17
index 18688cae17..ef40511d89 100755--- a/t/t1506-rev-parse-diagnosis.sh+++ b/t/t1506-rev-parse-diagnosis.sh@@ -107,16 +107,16 @@ test_expect_success 'correct relative file objects (6)' ' test_expect_success 'incorrect revision id' ' test_must_fail git rev-parse foobar:file.txt 2>error &&- test_i18ngrep "invalid object name .foobar." error &&+ test_grep "invalid object name .foobar." error && test_must_fail git rev-parse foobar 2>error &&- test_i18ngrep "unknown revision or path not in the working tree." error+ test_grep "unknown revision or path not in the working tree." error ' test_expect_success 'incorrect file in sha1:path' ' test_must_fail git rev-parse HEAD:nothing.txt 2>error &&- test_i18ngrep "path .nothing.txt. does not exist in .HEAD." error &&+ test_grep "path .nothing.txt. does not exist in .HEAD." error && test_must_fail git rev-parse HEAD:index-only.txt 2>error &&- test_i18ngrep "path .index-only.txt. exists on disk, but not in .HEAD." error &&+ test_grep "path .index-only.txt. exists on disk, but not in .HEAD." error && (cd subdir && test_must_fail git rev-parse HEAD:file2.txt 2>error && test_did_you_mean HEAD subdir/ file2.txt exists )@@ -124,9 +124,9 @@ test_expect_success 'incorrect file in sha1:path' ' test_expect_success 'incorrect file in :path and :N:path' ' test_must_fail git rev-parse :nothing.txt 2>error &&- test_i18ngrep "path .nothing.txt. does not exist (neither on disk nor in the index)" error &&+ test_grep "path .nothing.txt. does not exist (neither on disk nor in the index)" error && test_must_fail git rev-parse :1:nothing.txt 2>error &&- test_i18ngrep "path .nothing.txt. does not exist (neither on disk nor in the index)" error &&+ test_grep "path .nothing.txt. does not exist (neither on disk nor in the index)" error && test_must_fail git rev-parse :1:file.txt 2>error && test_did_you_mean ":0" "" file.txt "is in the index" "at stage 1" && (cd subdir &&@@ -137,42 +137,42 @@ test_expect_success 'incorrect file in :path and :N:path' ' test_must_fail git rev-parse :2:file2.txt 2>error && test_did_you_mean :0 subdir/ file2.txt "is in the index") && test_must_fail git rev-parse :disk-only.txt 2>error &&- test_i18ngrep "path .disk-only.txt. exists on disk, but not in the index" error+ test_grep "path .disk-only.txt. exists on disk, but not in the index" error ' test_expect_success 'invalid @{n} reference' ' test_must_fail git rev-parse main@{99999} >output 2>error && test_must_be_empty output &&- test_i18ngrep "log for [^ ]* only has [0-9][0-9]* entries" error &&+ test_grep "log for [^ ]* only has [0-9][0-9]* entries" error && test_must_fail git rev-parse --verify main@{99999} >output 2>error && test_must_be_empty output &&- test_i18ngrep "log for [^ ]* only has [0-9][0-9]* entries" error+ test_grep "log for [^ ]* only has [0-9][0-9]* entries" error ' test_expect_success 'relative path not found' ' ( cd subdir && test_must_fail git rev-parse HEAD:./nonexistent.txt 2>error &&- test_i18ngrep subdir/nonexistent.txt error+ test_grep subdir/nonexistent.txt error ) ' test_expect_success 'relative path outside worktree' ' test_must_fail git rev-parse HEAD:../file.txt >output 2>error && test_must_be_empty output &&- test_i18ngrep "outside repository" error+ test_grep "outside repository" error ' test_expect_success 'relative path when cwd is outside worktree' ' test_must_fail git --git-dir=.git --work-tree=subdir rev-parse HEAD:./file.txt >output 2>error && test_must_be_empty output &&- test_i18ngrep "relative path syntax can.t be used outside working tree" error+ test_grep "relative path syntax can.t be used outside working tree" error ' test_expect_success '<commit>:file correctly diagnosed after a pathname' ' test_must_fail git rev-parse file.txt HEAD:file.txt 1>actual 2>error &&- test_i18ngrep ! "exists on disk" error &&- test_i18ngrep "no such path in the working tree" error &&+ test_grep ! "exists on disk" error &&+ test_grep "no such path in the working tree" error && cat >expect <<-\EOF && file.txt HEAD:file.txt@@ -214,13 +214,13 @@ test_expect_success 'dotdot does not peel endpoints' ' test_expect_success 'arg before dashdash must be a revision (missing)' ' test_must_fail git rev-parse foobar -- 2>stderr &&- test_i18ngrep "bad revision" stderr+ test_grep "bad revision" stderr ' test_expect_success 'arg before dashdash must be a revision (file)' ' >foobar && test_must_fail git rev-parse foobar -- 2>stderr &&- test_i18ngrep "bad revision" stderr+ test_grep "bad revision" stderr ' test_expect_success 'arg before dashdash must be a revision (ambiguous)' '@@ -269,7 +269,7 @@ test_expect_success 'arg after dashdash not interpreted as option' ' test_expect_success 'arg after end-of-options not interpreted as option' ' test_must_fail git rev-parse --end-of-options --not-real -- 2>err &&- test_i18ngrep bad.revision.*--not-real err+ test_grep bad.revision.*--not-real err ' test_expect_success 'end-of-options still allows --' '
t/t1512-rev-parse-disambiguation.sh
+3-3
index 98cefe3b70..70f1e0a998 100755--- a/t/t1512-rev-parse-disambiguation.sh+++ b/t/t1512-rev-parse-disambiguation.sh@@ -129,7 +129,7 @@ test_expect_success 'blob and tree' ' test_expect_success 'warn ambiguity when no candidate matches type hint' ' test_must_fail git rev-parse --verify 000000000^{commit} 2>actual &&- test_i18ngrep "short object ID 000000000 is ambiguous" actual+ test_grep "short object ID 000000000 is ambiguous" actual ' test_expect_success 'disambiguate tree-ish' '@@ -470,10 +470,10 @@ test_expect_success 'cat-file --batch and --batch-check show ambiguous' ' echo "0000 ambiguous" >expect && echo 0000 | git cat-file --batch-check >actual 2>err && test_cmp expect actual &&- test_i18ngrep hint: err &&+ test_grep hint: err && echo 0000 | git cat-file --batch >actual 2>err && test_cmp expect actual &&- test_i18ngrep hint: err+ test_grep hint: err ' test_done
t/t2004-checkout-cache-temp.sh
+1-1
index b16d69ca4a..4c0fd856b3 100755--- a/t/t2004-checkout-cache-temp.sh+++ b/t/t2004-checkout-cache-temp.sh@@ -93,7 +93,7 @@ test_expect_success 'checkout all stages of unknown path' ' rm -f path* .merge_* actual && test_must_fail git checkout-index --stage=all --temp \ -- does-not-exist 2>stderr &&- test_i18ngrep not.in.the.cache stderr+ test_grep not.in.the.cache stderr ' test_expect_success 'checkout all stages/one file to nothing' '
index 9d4b37526a..82c3bfeac1 100755--- a/t/t2010-checkout-ambiguous.sh+++ b/t/t2010-checkout-ambiguous.sh@@ -62,8 +62,8 @@ test_expect_success 'disambiguate checking out from a tree-ish' ' test_expect_success 'accurate error message with more than one ref' ' test_must_fail git checkout HEAD main -- 2>actual &&- test_i18ngrep 2 actual &&- test_i18ngrep "one reference expected, 2 given" actual+ test_grep 2 actual &&+ test_grep "one reference expected, 2 given" actual ' test_done
t/t2018-checkout-branch.sh
+2-2
index 8581ad3437..43551cc148 100755--- a/t/t2018-checkout-branch.sh+++ b/t/t2018-checkout-branch.sh@@ -278,12 +278,12 @@ test_expect_success 'checkout -b to a new branch preserves mergeable changes des test_expect_success 'checkout -b rejects an invalid start point' ' test_must_fail git checkout -b branch4 file1 2>err &&- test_i18ngrep "is not a commit" err+ test_grep "is not a commit" err ' test_expect_success 'checkout -b rejects an extra path argument' ' test_must_fail git checkout -b branch5 branch1 file1 2>err &&- test_i18ngrep "Cannot update paths and switch to branch" err+ test_grep "Cannot update paths and switch to branch" err ' test_done
t/t2019-checkout-ambiguous-ref.sh
+4-4
index 9540588664..c67261e2b6 100755--- a/t/t2019-checkout-ambiguous-ref.sh+++ b/t/t2019-checkout-ambiguous-ref.sh@@ -32,8 +32,8 @@ test_expect_success 'checkout chooses branch over tag' ' ' test_expect_success 'checkout reports switch to branch' '- test_i18ngrep "Switched to branch" stderr &&- test_i18ngrep ! "^HEAD is now at" stderr+ test_grep "Switched to branch" stderr &&+ test_grep ! "^HEAD is now at" stderr ' test_expect_success 'checkout vague ref succeeds' '@@ -54,8 +54,8 @@ test_expect_success VAGUENESS_SUCCESS 'checkout chooses branch over tag' ' ' test_expect_success VAGUENESS_SUCCESS 'checkout reports switch to branch' '- test_i18ngrep "Switched to branch" stderr &&- test_i18ngrep ! "^HEAD is now at" stderr+ test_grep "Switched to branch" stderr &&+ test_grep ! "^HEAD is now at" stderr ' test_done
index 74049a9812..a97416ce65 100755--- a/t/t2024-checkout-dwim.sh+++ b/t/t2024-checkout-dwim.sh@@ -93,7 +93,7 @@ test_expect_success 'when arg matches multiple remotes, do not fallback to inter test_must_fail git checkout ambiguous_branch_and_file 2>err &&- test_i18ngrep "matched multiple (2) remote tracking branches" err &&+ test_grep "matched multiple (2) remote tracking branches" err && # file must not be altered test_cmp expect ambiguous_branch_and_file@@ -105,12 +105,12 @@ test_expect_success 'checkout of branch from multiple remotes fails with advice' test_must_fail git checkout foo 2>stderr && test_branch main && status_uno_is_clean &&- test_i18ngrep "^hint: " stderr &&+ test_grep "^hint: " stderr && test_must_fail git -c advice.checkoutAmbiguousRemoteBranchName=false \ checkout foo 2>stderr && test_branch main && status_uno_is_clean &&- test_i18ngrep ! "^hint: " stderr+ test_grep ! "^hint: " stderr ' test_expect_success PERL 'checkout -p with multiple remotes does not print advice' '@@ -118,7 +118,7 @@ test_expect_success PERL 'checkout -p with multiple remotes does not print advic test_might_fail git branch -D foo && git checkout -p foo 2>stderr &&- test_i18ngrep ! "^hint: " stderr &&+ test_grep ! "^hint: " stderr && status_uno_is_clean '
t/t2025-checkout-no-overlay.sh
+1-1
index 3832c3de81..246609d54d 100755--- a/t/t2025-checkout-no-overlay.sh+++ b/t/t2025-checkout-no-overlay.sh@@ -26,7 +26,7 @@ test_expect_success 'checkout --no-overlay removing last file from directory' ' test_expect_success 'checkout -p --overlay is disallowed' ' test_must_fail git checkout -p --overlay HEAD 2>actual &&- test_i18ngrep "fatal: options .-p. and .--overlay. cannot be used together" actual+ test_grep "fatal: options .-p. and .--overlay. cannot be used together" actual ' test_expect_success '--no-overlay --theirs with D/F conflict deletes file' '
t/t2026-checkout-pathspec-file.sh
+4-4
index 9c651aefbc..acd55217a6 100755--- a/t/t2026-checkout-pathspec-file.sh+++ b/t/t2026-checkout-pathspec-file.sh@@ -149,16 +149,16 @@ test_expect_success 'error conditions' ' echo fileA.t >list && test_must_fail git checkout --pathspec-from-file=list --detach 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--detach. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--detach. cannot be used together" err && test_must_fail git checkout --pathspec-from-file=list --patch 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err && test_must_fail git checkout --pathspec-from-file=list -- fileA.t 2>err &&- test_i18ngrep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err &&+ test_grep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err && test_must_fail git checkout --pathspec-file-nul 2>err &&- test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err+ test_grep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err ' test_done
t/t2027-checkout-track.sh
+1-1
index a8bbc60954..98f16c7239 100755--- a/t/t2027-checkout-track.sh+++ b/t/t2027-checkout-track.sh@@ -22,7 +22,7 @@ test_expect_success 'checkout --track -b creates a new tracking branch' ' test_expect_success 'checkout --track -b rejects an extra path argument' ' test_must_fail git checkout --track -b branch2 main one.t 2>err &&- test_i18ngrep "cannot be used with updating paths" err+ test_grep "cannot be used with updating paths" err ' test_expect_success 'checkout --track -b overrides autoSetupMerge=inherit' '
t/t2030-unresolve-info.sh
+1-1
index 2d8c70b03a..102023ed57 100755--- a/t/t2030-unresolve-info.sh+++ b/t/t2030-unresolve-info.sh@@ -191,7 +191,7 @@ test_expect_success 'rerere forget (add-add conflict)' ' git commit -m "add differently" && test_must_fail git merge fifth && git rerere forget add-differently 2>actual &&- test_i18ngrep "no remembered" actual+ test_grep "no remembered" actual ' test_expect_success 'resolve-undo keeps blobs from gc' '
t/t2072-restore-pathspec-file.sh
+4-4
index c22669b39f..8198a1e578 100755--- a/t/t2072-restore-pathspec-file.sh+++ b/t/t2072-restore-pathspec-file.sh@@ -152,16 +152,16 @@ test_expect_success 'error conditions' ' >empty_list && test_must_fail git restore --pathspec-from-file=list --patch --source=HEAD^1 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err && test_must_fail git restore --pathspec-from-file=list --source=HEAD^1 -- fileA.t 2>err &&- test_i18ngrep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err &&+ test_grep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err && test_must_fail git restore --pathspec-file-nul --source=HEAD^1 2>err &&- test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err &&+ test_grep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err && test_must_fail git restore --pathspec-from-file=empty_list --source=HEAD^1 2>err &&- test_i18ngrep -e "you must specify path(s) to restore" err+ test_grep -e "you must specify path(s) to restore" err ' test_expect_success 'wildcard pathspec matches file in subdirectory' '
index 89424abccd..b7cf1e492c 100755--- a/t/t2204-add-ignored.sh+++ b/t/t2204-add-ignored.sh@@ -36,7 +36,7 @@ do ' test_expect_success "complaints for ignored $i output" '- test_i18ngrep -e "Use -f if" err+ test_grep -e "Use -f if" err ' test_expect_success "complaints for ignored $i with unignored file" '@@ -46,7 +46,7 @@ do test_must_be_empty out ' test_expect_success "complaints for ignored $i with unignored file output" '- test_i18ngrep -e "Use -f if" err+ test_grep -e "Use -f if" err ' done@@ -65,7 +65,7 @@ do test_expect_success "complaints for ignored $i in dir output" ' ( cd dir &&- test_i18ngrep -e "Use -f if" err+ test_grep -e "Use -f if" err ) ' done@@ -85,7 +85,7 @@ do test_expect_success "complaints for ignored $i in sub output" ' ( cd sub &&- test_i18ngrep -e "Use -f if" err+ test_grep -e "Use -f if" err ) ' done
t/t2401-worktree-prune.sh
+5-5
index 568a47ec42..71aa9bcd62 100755--- a/t/t2401-worktree-prune.sh+++ b/t/t2401-worktree-prune.sh@@ -47,7 +47,7 @@ test_expect_success SANITY 'prune directories with unreadable gitdir' ' : >.git/worktrees/def/gitdir && chmod u-r .git/worktrees/def/gitdir && git worktree prune --verbose 2>actual &&- test_i18ngrep "Removing worktrees/def: unable to read gitdir file" actual &&+ test_grep "Removing worktrees/def: unable to read gitdir file" actual && ! test -d .git/worktrees/def && ! test -d .git/worktrees '@@ -57,7 +57,7 @@ test_expect_success 'prune directories with invalid gitdir' ' : >.git/worktrees/def/def && : >.git/worktrees/def/gitdir && git worktree prune --verbose 2>actual &&- test_i18ngrep "Removing worktrees/def: invalid gitdir file" actual &&+ test_grep "Removing worktrees/def: invalid gitdir file" actual && ! test -d .git/worktrees/def && ! test -d .git/worktrees '@@ -67,7 +67,7 @@ test_expect_success 'prune directories with gitdir pointing to nowhere' ' : >.git/worktrees/def/def && echo "$(pwd)"/nowhere >.git/worktrees/def/gitdir && git worktree prune --verbose 2>actual &&- test_i18ngrep "Removing worktrees/def: gitdir file points to non-existent location" actual &&+ test_grep "Removing worktrees/def: gitdir file points to non-existent location" actual && ! test -d .git/worktrees/def && ! test -d .git/worktrees '@@ -103,7 +103,7 @@ test_expect_success 'prune duplicate (linked/linked)' ' sed "s/w2/w1/" .git/worktrees/w2/gitdir >.git/worktrees/w2/gitdir.new && mv .git/worktrees/w2/gitdir.new .git/worktrees/w2/gitdir && git worktree prune --verbose 2>actual &&- test_i18ngrep "duplicate entry" actual &&+ test_grep "duplicate entry" actual && test -d .git/worktrees/w1 && ! test -d .git/worktrees/w2 '@@ -116,7 +116,7 @@ test_expect_success 'prune duplicate (main/linked)' ' rm -fr wt && mv repo wt && git -C wt worktree prune --verbose 2>actual &&- test_i18ngrep "duplicate entry" actual &&+ test_grep "duplicate entry" actual && ! test -d .git/worktrees/wt '
t/t2402-worktree-list.sh
+3-3
index 9ad9be0c20..33ea9cb21b 100755--- a/t/t2402-worktree-list.sh+++ b/t/t2402-worktree-list.sh@@ -143,7 +143,7 @@ test_expect_success '"list" all worktrees --porcelain with prunable' ' rm -rf prunable && git worktree list --porcelain >out && sed -n "/^worktree .*\/prunable$/,/^$/p" <out >only_prunable &&- test_i18ngrep "^prunable gitdir file points to non-existent location$" only_prunable+ test_grep "^prunable gitdir file points to non-existent location$" only_prunable ' test_expect_success '"list" all worktrees with prunable consistent with "prune"' '@@ -155,8 +155,8 @@ test_expect_success '"list" all worktrees with prunable consistent with "prune"' grep "/prunable *[0-9a-f].* prunable$" out && ! grep "/unprunable *[0-9a-f].* unprunable$" out && git worktree prune --verbose 2>out &&- test_i18ngrep "^Removing worktrees/prunable" out &&- test_i18ngrep ! "^Removing worktrees/unprunable" out+ test_grep "^Removing worktrees/prunable" out &&+ test_grep ! "^Removing worktrees/unprunable" out ' test_expect_success '"list" --verbose and --porcelain mutually exclusive' '
t/t2403-worktree-move.sh
+1-1
index 230a55e99a..901342ea09 100755--- a/t/t2403-worktree-move.sh+++ b/t/t2403-worktree-move.sh@@ -202,7 +202,7 @@ test_expect_success 'proper error when worktree not found' ' for i in noodle noodle/bork do test_must_fail git worktree lock $i 2>err &&- test_i18ngrep "not a working tree" err || return 1+ test_grep "not a working tree" err || return 1 done '
t/t2406-worktree-repair.sh
+12-12
index 8970780efc..edbf502ec5 100755--- a/t/t2406-worktree-repair.sh+++ b/t/t2406-worktree-repair.sh@@ -25,7 +25,7 @@ test_expect_success 'worktree path not directory' ' >notdir && test_must_fail git worktree repair >out 2>err && test_must_be_empty out &&- test_i18ngrep "not a directory" err+ test_grep "not a directory" err ' test_expect_success "don't clobber .git repo" '@@ -35,7 +35,7 @@ test_expect_success "don't clobber .git repo" ' test_create_repo repo && test_must_fail git worktree repair >out 2>err && test_must_be_empty out &&- test_i18ngrep ".git is not a file" err+ test_grep ".git is not a file" err ' test_corrupt_gitfile () {@@ -47,7 +47,7 @@ test_corrupt_gitfile () { git -C corrupt rev-parse --absolute-git-dir >expect && eval "$butcher" && git -C "$repairdir" worktree repair 2>err &&- test_i18ngrep "$problem" err &&+ test_grep "$problem" err && git -C corrupt rev-parse --absolute-git-dir >actual && test_cmp expect actual }@@ -93,7 +93,7 @@ test_expect_success 'repair .git file from bare.git' ' test_expect_success 'invalid worktree path' ' test_must_fail git worktree repair /notvalid >out 2>err && test_must_be_empty out &&- test_i18ngrep "not a valid path" err+ test_grep "not a valid path" err ' test_expect_success 'repo not found; .git not file' '@@ -101,7 +101,7 @@ test_expect_success 'repo not found; .git not file' ' test_create_repo not-a-worktree && test_must_fail git worktree repair not-a-worktree >out 2>err && test_must_be_empty out &&- test_i18ngrep ".git is not a file" err+ test_grep ".git is not a file" err ' test_expect_success 'repo not found; .git not referencing repo' '@@ -111,7 +111,7 @@ test_expect_success 'repo not found; .git not referencing repo' ' mv side/.newgit side/.git && mkdir not-a-repo && test_must_fail git worktree repair side 2>err &&- test_i18ngrep ".git file does not reference a repository" err+ test_grep ".git file does not reference a repository" err ' test_expect_success 'repo not found; .git file broken' '@@ -121,7 +121,7 @@ test_expect_success 'repo not found; .git file broken' ' mv orig moved && test_must_fail git worktree repair moved >out 2>err && test_must_be_empty out &&- test_i18ngrep ".git file broken" err+ test_grep ".git file broken" err ' test_expect_success 'repair broken gitdir' '@@ -132,7 +132,7 @@ test_expect_success 'repair broken gitdir' ' mv orig moved && git worktree repair moved 2>err && test_cmp expect .git/worktrees/orig/gitdir &&- test_i18ngrep "gitdir unreadable" err+ test_grep "gitdir unreadable" err ' test_expect_success 'repair incorrect gitdir' '@@ -142,7 +142,7 @@ test_expect_success 'repair incorrect gitdir' ' mv orig moved && git worktree repair moved 2>err && test_cmp expect .git/worktrees/orig/gitdir &&- test_i18ngrep "gitdir incorrect" err+ test_grep "gitdir incorrect" err ' test_expect_success 'repair gitdir (implicit) from linked worktree' '@@ -152,7 +152,7 @@ test_expect_success 'repair gitdir (implicit) from linked worktree' ' mv orig moved && git -C moved worktree repair 2>err && test_cmp expect .git/worktrees/orig/gitdir &&- test_i18ngrep "gitdir incorrect" err+ test_grep "gitdir incorrect" err ' test_expect_success 'unable to repair gitdir (implicit) from main worktree' '@@ -177,8 +177,8 @@ test_expect_success 'repair multiple gitdir files' ' git worktree repair moved1 moved2 2>err && test_cmp expect1 .git/worktrees/orig1/gitdir && test_cmp expect2 .git/worktrees/orig2/gitdir &&- test_i18ngrep "gitdir incorrect:.*orig1/gitdir$" err &&- test_i18ngrep "gitdir incorrect:.*orig2/gitdir$" err+ test_grep "gitdir incorrect:.*orig1/gitdir$" err &&+ test_grep "gitdir incorrect:.*orig2/gitdir$" err ' test_expect_success 'repair moved main and linked worktrees' '
index d734000d2f..cf23c06c09 100755--- a/t/t3301-notes.sh+++ b/t/t3301-notes.sh@@ -1469,9 +1469,9 @@ test_expect_success 'GIT_NOTES_REWRITE_REF overrides config' ' test_expect_success 'git notes copy diagnoses too many or too few arguments' ' test_must_fail git notes copy 2>error &&- test_i18ngrep "too few arguments" error &&+ test_grep "too few arguments" error && test_must_fail git notes copy one two three 2>error &&- test_i18ngrep "too many arguments" error+ test_grep "too many arguments" error ' test_expect_success 'git notes get-ref expands refs/heads/main to refs/notes/refs/heads/main' '
t/t3310-notes-merge-manual-resolve.sh
+8-8
index d3d72e25fe..60d6ed2dc8 100755--- a/t/t3310-notes-merge-manual-resolve.sh+++ b/t/t3310-notes-merge-manual-resolve.sh@@ -216,7 +216,7 @@ test_expect_success 'merge z into m (== y) with default ("manual") resolver => C git config core.notesRef refs/notes/m && test_must_fail git notes merge z >output 2>&1 && # Output should point to where to resolve conflicts- test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&+ test_grep "\\.git/NOTES_MERGE_WORKTREE" output && # Inspect merge conflicts ls .git/NOTES_MERGE_WORKTREE >output_conflicts && test_cmp expect_conflicts output_conflicts &&@@ -263,7 +263,7 @@ test_expect_success 'cannot do merge w/conflicts when previous merge is unfinish test -d .git/NOTES_MERGE_WORKTREE && test_must_fail git notes merge z >output 2>&1 && # Output should indicate what is wrong- test_i18ngrep -q "\\.git/NOTES_MERGE_\\* exists" output+ test_grep -q "\\.git/NOTES_MERGE_\\* exists" output ' # Setup non-conflicting merge between x and new notes ref w@@ -417,7 +417,7 @@ test_expect_success 'redo merge of z into m (== y) with default ("manual") resol git config core.notesRef refs/notes/m && test_must_fail git notes merge z >output 2>&1 && # Output should point to where to resolve conflicts- test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&+ test_grep "\\.git/NOTES_MERGE_WORKTREE" output && # Inspect merge conflicts ls .git/NOTES_MERGE_WORKTREE >output_conflicts && test_cmp expect_conflicts output_conflicts &&@@ -449,7 +449,7 @@ git rev-parse refs/notes/z > pre_merge_z test_expect_success 'redo merge of z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' ' test_must_fail git notes merge z >output 2>&1 && # Output should point to where to resolve conflicts- test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&+ test_grep "\\.git/NOTES_MERGE_WORKTREE" output && # Inspect merge conflicts ls .git/NOTES_MERGE_WORKTREE >output_conflicts && test_cmp expect_conflicts output_conflicts &&@@ -528,7 +528,7 @@ test_expect_success 'redo merge of z into m (== y) with default ("manual") resol git update-ref refs/notes/m refs/notes/y && test_must_fail git notes merge z >output 2>&1 && # Output should point to where to resolve conflicts- test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&+ test_grep "\\.git/NOTES_MERGE_WORKTREE" output && # Inspect merge conflicts ls .git/NOTES_MERGE_WORKTREE >output_conflicts && test_cmp expect_conflicts output_conflicts &&@@ -573,9 +573,9 @@ EOF test "$(git rev-parse refs/notes/y)" = "$(git rev-parse NOTES_MERGE_PARTIAL^1)" && test "$(git rev-parse refs/notes/m)" != "$(git rev-parse NOTES_MERGE_PARTIAL^1)" && # Mention refs/notes/m, and its current and expected value in output- test_i18ngrep -q "refs/notes/m" output &&- test_i18ngrep -q "$(git rev-parse refs/notes/m)" output &&- test_i18ngrep -q "$(git rev-parse NOTES_MERGE_PARTIAL^1)" output &&+ test_grep -q "refs/notes/m" output &&+ test_grep -q "$(git rev-parse refs/notes/m)" output &&+ test_grep -q "$(git rev-parse NOTES_MERGE_PARTIAL^1)" output && # Verify that other notes refs has not changed (w, x, y and z) verify_notes w && verify_notes x &&
t/t3320-notes-merge-worktrees.sh
+2-2
index bff0aea550..0fd33280cf 100755--- a/t/t3320-notes-merge-worktrees.sh+++ b/t/t3320-notes-merge-worktrees.sh@@ -57,7 +57,7 @@ test_expect_success 'merge z into y while mid-merge in another workdir fails' ' cd worktree && git config core.notesRef refs/notes/y && test_must_fail git notes merge z 2>err &&- test_i18ngrep "a notes merge into refs/notes/y is already in-progress at" err+ test_grep "a notes merge into refs/notes/y is already in-progress at" err ) && test_must_fail git -C worktree symbolic-ref NOTES_MERGE_REF '@@ -67,7 +67,7 @@ test_expect_success 'merge z into x while mid-merge on y succeeds' ' cd worktree2 && git config core.notesRef refs/notes/x && test_must_fail git notes merge z >out 2>&1 &&- test_i18ngrep "Automatic notes merge failed" out &&+ test_grep "Automatic notes merge failed" out && grep -v "A notes merge into refs/notes/x is already in-progress in" out ) && echo "refs/notes/x" >expect &&
t/t3321-notes-stripspace.sh
+1-1
index 028d825e8f..33c1322989 100755--- a/t/t3321-notes-stripspace.sh+++ b/t/t3321-notes-stripspace.sh@@ -428,7 +428,7 @@ test_expect_success 'add notes with empty messages' ' git notes add -m "${LF}" \ -m "${MULTI_LF}" \ -m "${LF}" >actual 2>&1 &&- test_i18ngrep "Removing note for object" actual+ test_grep "Removing note for object" actual ' test_expect_success 'add note by specifying "-C", "--no-stripspace" is the default behavior' '
t/t3400-rebase.sh
+3-3
index 3ce918fdb8..621c8ef84c 100755--- a/t/t3400-rebase.sh+++ b/t/t3400-rebase.sh@@ -143,8 +143,8 @@ test_expect_success 'Show verbose error when HEAD could not be detached' ' >B && test_when_finished "rm -f B" && test_must_fail git rebase topic 2>output.err >output.out &&- test_i18ngrep "The following untracked working tree files would be overwritten by checkout:" output.err &&- test_i18ngrep B output.err+ test_grep "The following untracked working tree files would be overwritten by checkout:" output.err &&+ test_grep B output.err ' test_expect_success 'fail when upstream arg is missing and not on branch' '@@ -421,7 +421,7 @@ test_expect_success 'refuse to switch to branch checked out elsewhere' ' git checkout main && git worktree add wt && test_must_fail git -C wt rebase main main 2>err &&- test_i18ngrep "already checked out" err+ test_grep "already checked out" err ' test_expect_success MINGW,SYMLINKS_WINDOWS 'rebase when .git/logs is a symlink' '
t/t3402-rebase-merge.sh
+1-1
index e9e03ca4b5..5c67d07ba3 100755--- a/t/t3402-rebase-merge.sh+++ b/t/t3402-rebase-merge.sh@@ -171,7 +171,7 @@ test_expect_success '--reapply-cherry-picks' ' # Regular rebase fails, because the 1-11 commit is deduplicated test_must_fail git -C repo rebase --merge main 2> err &&- test_i18ngrep "error: could not apply.*add 12 in another branch" err &&+ test_grep "error: could not apply.*add 12 in another branch" err && git -C repo rebase --abort && # With --reapply-cherry-picks, it works
t/t3403-rebase-skip.sh
+15-15
index f6e4864497..a1911c4a9d 100755--- a/t/t3403-rebase-skip.sh+++ b/t/t3403-rebase-skip.sh@@ -108,10 +108,10 @@ test_expect_success 'correct advice upon picking empty commit' ' test_when_finished "git rebase --abort" && test_must_fail git rebase -i --onto goodbye \ amended-goodbye^ amended-goodbye 2>err &&- test_i18ngrep "previous cherry-pick is now empty" err &&- test_i18ngrep "git rebase --skip" err &&+ test_grep "previous cherry-pick is now empty" err &&+ test_grep "git rebase --skip" err && test_must_fail git commit &&- test_i18ngrep "git rebase --skip" err+ test_grep "git rebase --skip" err ' test_expect_success 'correct authorship when committing empty pick' '@@ -131,10 +131,10 @@ test_expect_success 'correct advice upon rewording empty commit' ' test_must_fail env FAKE_LINES="reword 1" git rebase -i \ --onto goodbye amended-goodbye^ amended-goodbye 2>err ) &&- test_i18ngrep "previous cherry-pick is now empty" err &&- test_i18ngrep "git rebase --skip" err &&+ test_grep "previous cherry-pick is now empty" err &&+ test_grep "git rebase --skip" err && test_must_fail git commit &&- test_i18ngrep "git rebase --skip" err+ test_grep "git rebase --skip" err ' test_expect_success 'correct advice upon editing empty commit' '@@ -144,10 +144,10 @@ test_expect_success 'correct advice upon editing empty commit' ' test_must_fail env FAKE_LINES="edit 1" git rebase -i \ --onto goodbye amended-goodbye^ amended-goodbye 2>err ) &&- test_i18ngrep "previous cherry-pick is now empty" err &&- test_i18ngrep "git rebase --skip" err &&+ test_grep "previous cherry-pick is now empty" err &&+ test_grep "git rebase --skip" err && test_must_fail git commit &&- test_i18ngrep "git rebase --skip" err+ test_grep "git rebase --skip" err ' test_expect_success 'correct advice upon cherry-picking an empty commit during a rebase' '@@ -157,10 +157,10 @@ test_expect_success 'correct advice upon cherry-picking an empty commit during a test_must_fail env FAKE_LINES="1 exec_git_cherry-pick_amended-goodbye" \ git rebase -i goodbye^ goodbye 2>err ) &&- test_i18ngrep "previous cherry-pick is now empty" err &&- test_i18ngrep "git cherry-pick --skip" err &&+ test_grep "previous cherry-pick is now empty" err &&+ test_grep "git cherry-pick --skip" err && test_must_fail git commit 2>err &&- test_i18ngrep "git cherry-pick --skip" err+ test_grep "git cherry-pick --skip" err ' test_expect_success 'correct advice upon multi cherry-pick picking an empty commit during a rebase' '@@ -170,10 +170,10 @@ test_expect_success 'correct advice upon multi cherry-pick picking an empty comm test_must_fail env FAKE_LINES="1 exec_git_cherry-pick_goodbye_amended-goodbye" \ git rebase -i goodbye^^ goodbye 2>err ) &&- test_i18ngrep "previous cherry-pick is now empty" err &&- test_i18ngrep "git cherry-pick --skip" err &&+ test_grep "previous cherry-pick is now empty" err &&+ test_grep "git cherry-pick --skip" err && test_must_fail git commit 2>err &&- test_i18ngrep "git cherry-pick --skip" err+ test_grep "git cherry-pick --skip" err ' test_expect_success 'fixup that empties commit fails' '
t/t3404-rebase-interactive.sh
+19-19
index 96a56aafbe..dbd5df5aa4 100755--- a/t/t3404-rebase-interactive.sh+++ b/t/t3404-rebase-interactive.sh@@ -291,9 +291,9 @@ test_expect_success 'abort with error when new base cannot be checked out' ' git rm --cached file1 && git commit -m "remove file in base" && test_must_fail git rebase -i primary > output 2>&1 &&- test_i18ngrep "The following untracked working tree files would be overwritten by checkout:" \+ test_grep "The following untracked working tree files would be overwritten by checkout:" \ output &&- test_i18ngrep "file1" output &&+ test_grep "file1" output && test_path_is_missing .git/rebase-merge && rm file1 && git reset --hard HEAD^@@ -604,7 +604,7 @@ test_expect_success 'clean error after failed "exec"' ' echo "edited again" > file7 && git add file7 && test_must_fail git rebase --continue 2>error &&- test_i18ngrep "you have staged changes in your working tree" error+ test_grep "you have staged changes in your working tree" error ' test_expect_success 'rebase a detached HEAD' '@@ -955,7 +955,7 @@ test_expect_success 'rebase --exec works without -i ' ' git reset --hard execute && rm -rf exec_output && EDITOR="echo >invoked_editor" git rebase --exec "echo a line >>exec_output" HEAD~2 2>actual &&- test_i18ngrep "Successfully rebased and updated" actual &&+ test_grep "Successfully rebased and updated" actual && test_line_count = 2 exec_output && test_path_is_missing invoked_editor '@@ -963,7 +963,7 @@ test_expect_success 'rebase --exec works without -i ' ' test_expect_success 'rebase -i --exec without <CMD>' ' git reset --hard execute && test_must_fail git rebase -i --exec 2>actual &&- test_i18ngrep "requires a value" actual &&+ test_grep "requires a value" actual && git checkout primary '@@ -1272,7 +1272,7 @@ test_expect_success 'todo count' ' test_set_editor "$(pwd)/dump-raw.sh" && git rebase -i HEAD~4 >actual ) &&- test_i18ngrep "^# Rebase ..* onto ..* ([0-9]" actual+ test_grep "^# Rebase ..* onto ..* ([0-9]" actual ' test_expect_success 'rebase -i commits that overwrite untracked files (pick)' '@@ -1379,7 +1379,7 @@ test_expect_success 'rebase -i respects rebase.missingCommitsCheck = ignore' ' FAKE_LINES="1 2 3 4" git rebase -i --root 2>actual ) && test D = $(git cat-file commit HEAD | sed -ne \$p) &&- test_i18ngrep \+ test_grep \ "Successfully rebased and updated refs/heads/missing-commit" \ actual '@@ -1442,7 +1442,7 @@ test_expect_success 'rebase --edit-todo respects rebase.missingCommitsCheck = ig git rebase --continue 2>actual ) && test D = $(git cat-file commit HEAD | sed -ne \$p) &&- test_i18ngrep \+ test_grep \ "Successfully rebased and updated refs/heads/missing-commit" \ actual '@@ -1477,7 +1477,7 @@ test_expect_success 'rebase --edit-todo respects rebase.missingCommitsCheck = wa git rebase --continue 2>actual ) && test D = $(git cat-file commit HEAD | sed -ne \$p) &&- test_i18ngrep \+ test_grep \ "Successfully rebased and updated refs/heads/missing-commit" \ actual '@@ -1525,7 +1525,7 @@ test_expect_success 'rebase --edit-todo respects rebase.missingCommitsCheck = er git rebase --continue 2>actual ) && test D = $(git cat-file commit HEAD | sed -ne \$p) &&- test_i18ngrep \+ test_grep \ "Successfully rebased and updated refs/heads/missing-commit" \ actual '@@ -1585,9 +1585,9 @@ test_expect_success 'static check of bad command' ' set_fake_editor && test_must_fail env FAKE_LINES="1 2 3 bad 4 5" \ git rebase -i --root 2>actual &&- test_i18ngrep "pickled $(git rev-list --oneline -1 primary~1)" \+ test_grep "pickled $(git rev-list --oneline -1 primary~1)" \ actual &&- test_i18ngrep "You can fix this with .git rebase --edit-todo.." \+ test_grep "You can fix this with .git rebase --edit-todo.." \ actual && FAKE_LINES="1 2 3 drop 4 5" git rebase --edit-todo ) &&@@ -1645,8 +1645,8 @@ test_expect_success 'static check of bad SHA-1' ' set_fake_editor && test_must_fail env FAKE_LINES="1 2 edit fakesha 3 4 5 #" \ git rebase -i --root 2>actual &&- test_i18ngrep "edit XXXXXXX False commit" actual &&- test_i18ngrep "You can fix this with .git rebase --edit-todo.." \+ test_grep "edit XXXXXXX False commit" actual &&+ test_grep "You can fix this with .git rebase --edit-todo.." \ actual && FAKE_LINES="1 2 4 5 6" git rebase --edit-todo ) &&@@ -1673,7 +1673,7 @@ test_expect_success 'rebase -i --gpg-sign=<key-id>' ' FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" \ HEAD^ >out 2>err ) &&- test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err+ test_grep "$SQ-S\"S I Gner\"$SQ" err ' test_expect_success 'rebase -i --gpg-sign=<key-id> overrides commit.gpgSign' '@@ -1684,7 +1684,7 @@ test_expect_success 'rebase -i --gpg-sign=<key-id> overrides commit.gpgSign' ' FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" \ HEAD^ >out 2>err ) &&- test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err+ test_grep "$SQ-S\"S I Gner\"$SQ" err ' test_expect_success 'valid author header after --root swap' '@@ -1738,7 +1738,7 @@ test_expect_success 'correct error message for partial commit after empty pick' ) && echo x >file1 && test_must_fail git commit file1 2>err &&- test_i18ngrep "cannot do a partial commit during a rebase." err+ test_grep "cannot do a partial commit during a rebase." err ' test_expect_success 'correct error message for commit --amend after empty pick' '@@ -1751,13 +1751,13 @@ test_expect_success 'correct error message for commit --amend after empty pick' ) && echo x>file1 && test_must_fail git commit -a --amend 2>err &&- test_i18ngrep "middle of a rebase -- cannot amend." err+ test_grep "middle of a rebase -- cannot amend." err ' test_expect_success 'todo has correct onto hash' ' GIT_SEQUENCE_EDITOR=cat git rebase -i no-conflict-branch~4 no-conflict-branch >actual && onto=$(git rev-parse --short HEAD~4) &&- test_i18ngrep "^# Rebase ..* onto $onto" actual+ test_grep "^# Rebase ..* onto $onto" actual ' test_expect_success 'ORIG_HEAD is updated correctly' '
t/t3406-rebase-message.sh
+9-9
index ceca160005..a1d7fa7f7c 100755--- a/t/t3406-rebase-message.sh+++ b/t/t3406-rebase-message.sh@@ -33,24 +33,24 @@ test_expect_success 'rebase -m' ' test_expect_success 'rebase against main twice' ' git rebase --apply main >out &&- test_i18ngrep "Current branch topic is up to date" out+ test_grep "Current branch topic is up to date" out ' test_expect_success 'rebase against main twice with --force' ' git rebase --force-rebase --apply main >out &&- test_i18ngrep "Current branch topic is up to date, rebase forced" out+ test_grep "Current branch topic is up to date, rebase forced" out ' test_expect_success 'rebase against main twice from another branch' ' git checkout topic^ && git rebase --apply main topic >out &&- test_i18ngrep "Current branch topic is up to date" out+ test_grep "Current branch topic is up to date" out ' test_expect_success 'rebase fast-forward to main' ' git checkout topic^ && git rebase --apply topic >out &&- test_i18ngrep "Fast-forwarded HEAD to topic" out+ test_grep "Fast-forwarded HEAD to topic" out ' test_expect_success 'rebase --stat' '@@ -75,14 +75,14 @@ test_expect_success 'rebase -n overrides config rebase.stat config' ' test_expect_success 'rebase --onto outputs the invalid ref' ' test_must_fail git rebase --onto invalid-ref HEAD HEAD 2>err &&- test_i18ngrep "invalid-ref" err+ test_grep "invalid-ref" err ' test_expect_success 'error out early upon -C<n> or --whitespace=<bad>' ' test_must_fail git rebase -Cnot-a-number HEAD 2>err &&- test_i18ngrep "numerical value" err &&+ test_grep "numerical value" err && test_must_fail git rebase --whitespace=bad HEAD 2>err &&- test_i18ngrep "Invalid whitespace option" err+ test_grep "Invalid whitespace option" err ' write_reflog_expect () {@@ -251,8 +251,8 @@ test_expect_success 'rebase -i onto unrelated history' ' git -C unrelated remote add -f origin "$PWD" && git -C unrelated branch --set-upstream-to=origin/main && git -C unrelated -c core.editor=true rebase -i -v --stat >actual &&- test_i18ngrep "Changes to " actual &&- test_i18ngrep "5 files changed" actual+ test_grep "Changes to " actual &&+ test_grep "5 files changed" actual ' test_done
t/t3418-rebase-continue.sh
+3-3
index fb7b68990c..108d5c28fa 100755--- a/t/t3418-rebase-continue.sh+++ b/t/t3418-rebase-continue.sh@@ -182,8 +182,8 @@ test_expect_success '--skip after failed fixup cleans commit message' ' : Final squash failed, but there was still a squash && head -n1 .git/copy.txt >first-line &&- test_i18ngrep "# This is a combination of 3 commits" first-line &&- test_i18ngrep "# This is the commit message #3:" .git/copy.txt+ test_grep "# This is a combination of 3 commits" first-line &&+ test_grep "# This is the commit message #3:" .git/copy.txt ' test_expect_success 'setup rerere database' '@@ -276,7 +276,7 @@ test_expect_success '--reschedule-failed-exec' ' test_must_fail git -c rebase.rescheduleFailedExec=true \ rebase -x false HEAD^ 2>err && grep "^exec false" .git/rebase-merge/git-rebase-todo &&- test_i18ngrep "has been rescheduled" err+ test_grep "has been rescheduled" err ' test_expect_success 'rebase.rescheduleFailedExec only affects `rebase -i`' '
t/t3431-rebase-fork-point.sh
+1-1
index 4bfc779bb8..0bb284d61d 100755--- a/t/t3431-rebase-fork-point.sh+++ b/t/t3431-rebase-fork-point.sh@@ -84,7 +84,7 @@ test_expect_success 'git rebase --fork-point with ambigous refname' ' test_expect_success '--fork-point and --root both given' ' test_must_fail git rebase --fork-point --root 2>err &&- test_i18ngrep "cannot be used together" err+ test_grep "cannot be used together" err ' test_expect_success 'rebase.forkPoint set to false' '
t/t3501-revert-cherry-pick.sh
+3-3
index e2ef619323..3eac20c098 100755--- a/t/t3501-revert-cherry-pick.sh+++ b/t/t3501-revert-cherry-pick.sh@@ -43,7 +43,7 @@ test_expect_success 'cherry-pick --nonsense' ' git diff --exit-code HEAD && test_must_fail git cherry-pick --nonsense 2>msg && git diff --exit-code HEAD "$pos" &&- test_i18ngrep "[Uu]sage:" msg+ test_grep "[Uu]sage:" msg ' test_expect_success 'revert --nonsense' '@@ -52,7 +52,7 @@ test_expect_success 'revert --nonsense' ' git diff --exit-code HEAD && test_must_fail git revert --nonsense 2>msg && git diff --exit-code HEAD "$pos" &&- test_i18ngrep "[Uu]sage:" msg+ test_grep "[Uu]sage:" msg ' # the following two test cherry-pick and revert with renames@@ -99,7 +99,7 @@ test_expect_success 'revert forbidden on dirty working tree' ' echo content >extra_file && git add extra_file && test_must_fail git revert HEAD 2>errors &&- test_i18ngrep "your local changes would be overwritten by " errors+ test_grep "your local changes would be overwritten by " errors '
t/t3507-cherry-pick-conflict.sh
+4-4
index f32799e046..c88d597b12 100755--- a/t/t3507-cherry-pick-conflict.sh+++ b/t/t3507-cherry-pick-conflict.sh@@ -177,7 +177,7 @@ test_expect_success 'partial commit of cherry-pick fails' ' git add foo && test_must_fail git commit foo 2>err &&- test_i18ngrep "cannot do a partial commit during a cherry-pick." err+ test_grep "cannot do a partial commit during a cherry-pick." err ' test_expect_success 'commit --amend of cherry-pick fails' '@@ -188,7 +188,7 @@ test_expect_success 'commit --amend of cherry-pick fails' ' git add foo && test_must_fail git commit --amend 2>err &&- test_i18ngrep "in the middle of a cherry-pick -- cannot amend." err+ test_grep "in the middle of a cherry-pick -- cannot amend." err ' test_expect_success 'successful final commit clears cherry-pick state' '@@ -498,7 +498,7 @@ test_expect_success \ test_expect_success 'failed cherry-pick does not forget -s' ' pristine_detach initial && test_must_fail git cherry-pick -s picked &&- test_i18ngrep -e "Signed-off-by" .git/MERGE_MSG+ test_grep -e "Signed-off-by" .git/MERGE_MSG ' test_expect_success 'commit after failed cherry-pick does not add duplicated -s' '@@ -563,7 +563,7 @@ test_expect_success 'cherry-pick preserves sparse-checkout' ' echo /unrelated >.git/info/sparse-checkout && git read-tree --reset -u HEAD && test_must_fail git cherry-pick -Xours picked>actual &&- test_i18ngrep ! "Changes not staged for commit:" actual+ test_grep ! "Changes not staged for commit:" actual ' test_expect_success 'cherry-pick --continue remembers --keep-redundant-commits' '
t/t3510-cherry-pick-sequence.sh
+3-3
index 3b0fa66c33..72020a51c4 100755--- a/t/t3510-cherry-pick-sequence.sh+++ b/t/t3510-cherry-pick-sequence.sh@@ -154,7 +154,7 @@ test_expect_success 'skip "empty" commit' ' pristine_detach picked && test_commit dummy foo d && test_must_fail git cherry-pick anotherpick 2>err &&- test_i18ngrep "git cherry-pick --skip" err &&+ test_grep "git cherry-pick --skip" err && git cherry-pick --skip && test_cmp_rev dummy HEAD '@@ -314,7 +314,7 @@ test_expect_success '--abort does not unsafely change HEAD' ' git reset --hard base && test_must_fail git cherry-pick picked anotherpick && git cherry-pick --abort 2>actual &&- test_i18ngrep "You seem to have moved HEAD" actual &&+ test_grep "You seem to have moved HEAD" actual && test_cmp_rev base HEAD '@@ -520,7 +520,7 @@ test_expect_success '--continue asks for help after resolving patch to nil' ' test_cmp_rev unrelatedpick CHERRY_PICK_HEAD && git checkout HEAD -- unrelated && test_must_fail git cherry-pick --continue 2>msg &&- test_i18ngrep "The previous cherry-pick is now empty" msg+ test_grep "The previous cherry-pick is now empty" msg ' test_expect_success 'follow advice and skip nil patch' '
t/t3600-rm.sh
+4-4
index 0e8afe49ed..98259e2ada 100755--- a/t/t3600-rm.sh+++ b/t/t3600-rm.sh@@ -276,7 +276,7 @@ test_expect_success 'Resolving by removal is not a warning-worthy event' ' blob=$(echo blob | git hash-object -w --stdin) && printf "100644 $blob %d\tblob\n" 1 2 3 | git update-index --index-info && git rm blob >msg 2>&1 &&- test_i18ngrep ! "needs merge" msg &&+ test_grep ! "needs merge" msg && test_must_fail git ls-files -s --error-unmatch blob '@@ -631,7 +631,7 @@ test_expect_success 'rm of a populated submodule with a .git directory migrates test_path_is_missing submod/.git && git status -s -uno --ignore-submodules=none >actual && test_file_not_empty actual &&- test_i18ngrep Migrating output.err+ test_grep Migrating output.err ' cat >expect.deepmodified <<EOF@@ -722,7 +722,7 @@ test_expect_success "rm absorbs submodule's nested .git directory" ' test_path_is_missing submod/subsubmod/.git && git status -s -uno --ignore-submodules=none >actual && test_file_not_empty actual &&- test_i18ngrep Migrating output.err+ test_grep Migrating output.err ' test_expect_success 'checking out a commit after submodule removal needs manual updates' '@@ -731,7 +731,7 @@ test_expect_success 'checking out a commit after submodule removal needs manual git submodule update && git checkout -q HEAD^ && git checkout -q main 2>actual &&- test_i18ngrep "^warning: unable to rmdir '\''submod'\'':" actual &&+ test_grep "^warning: unable to rmdir '\''submod'\'':" actual && git status -s submod >actual && echo "?? submod/" >expected && test_cmp expected actual &&
t/t3601-rm-pathspec-file.sh
+3-3
index a2a0c820fe..7cef12981c 100755--- a/t/t3601-rm-pathspec-file.sh+++ b/t/t3601-rm-pathspec-file.sh@@ -67,14 +67,14 @@ test_expect_success 'error conditions' ' echo fileA.t >list && test_must_fail git rm --pathspec-from-file=list -- fileA.t 2>err &&- test_i18ngrep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err &&+ test_grep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err && test_must_fail git rm --pathspec-file-nul 2>err &&- test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err &&+ test_grep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err && >empty_list && test_must_fail git rm --pathspec-from-file=empty_list 2>err &&- test_i18ngrep -e "No pathspec was given. Which files should I remove?" err+ test_grep -e "No pathspec was given. Which files should I remove?" err ' test_done
t/t3700-add.sh
+3-3
index 7623689da2..f23d39f0d5 100755--- a/t/t3700-add.sh+++ b/t/t3700-add.sh@@ -438,7 +438,7 @@ test_expect_success 'git add --chmod fails with non regular files (but updates t test_ln_s_add foo foo3 && touch foo4 && test_must_fail git add --chmod=+x foo3 foo4 2>stderr &&- test_i18ngrep "cannot chmod +x .foo3." stderr &&+ test_grep "cannot chmod +x .foo3." stderr && test_mode_in_index 120000 foo3 && test_mode_in_index 100755 foo4 '@@ -455,12 +455,12 @@ test_expect_success 'git add --chmod --dry-run reports error for non regular fil git reset --hard && test_ln_s_add foo foo4 && test_must_fail git add --chmod=+x --dry-run foo4 2>stderr &&- test_i18ngrep "cannot chmod +x .foo4." stderr+ test_grep "cannot chmod +x .foo4." stderr ' test_expect_success 'git add --chmod --dry-run reports error for unmatched pathspec' ' test_must_fail git add --chmod=+x --dry-run nonexistent 2>stderr &&- test_i18ngrep "pathspec .nonexistent. did not match any files" stderr+ test_grep "pathspec .nonexistent. did not match any files" stderr ' test_expect_success 'no file status change if no pathspec is given' '
t/t3701-add-interactive.sh
+4-4
index 34aabb7f5f..0b5339ac6c 100755--- a/t/t3701-add-interactive.sh+++ b/t/t3701-add-interactive.sh@@ -335,12 +335,12 @@ test_expect_success 'different prompts for mode change/deleted' ' test_expect_success 'correct message when there is nothing to do' ' git reset --hard && git add -p 2>err &&- test_i18ngrep "No changes" err &&+ test_grep "No changes" err && printf "\\0123" >binary && git add binary && printf "\\0abc" >binary && git add -p 2>err &&- test_i18ngrep "Only binary files changed" err+ test_grep "Only binary files changed" err ' test_expect_success 'setup again' '@@ -497,7 +497,7 @@ test_expect_success 'adding an empty file' ' echo y | git checkout -p added-file -- >actual && test_path_is_file empty &&- test_i18ngrep "Apply addition to index and worktree" actual+ test_grep "Apply addition to index and worktree" actual ) '@@ -838,7 +838,7 @@ test_expect_success 'diff.algorithm is passed to `git diff-files`' ' git add file && echo changed >file && test_must_fail git -c diff.algorithm=bogus add -p 2>err &&- test_i18ngrep "error: option diff-algorithm accepts " err+ test_grep "error: option diff-algorithm accepts " err ' test_expect_success 'patch-mode via -i prompts for files' '
t/t3704-add-pathspec-file.sh
+6-6
index 4e6b5177c9..3aa59f6f63 100755--- a/t/t3704-add-pathspec-file.sh+++ b/t/t3704-add-pathspec-file.sh@@ -138,23 +138,23 @@ test_expect_success 'error conditions' ' >empty_list && test_must_fail git add --pathspec-from-file=list --interactive 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err && test_must_fail git add --pathspec-from-file=list --patch 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err && test_must_fail git add --pathspec-from-file=list --edit 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--edit. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--edit. cannot be used together" err && test_must_fail git add --pathspec-from-file=list -- fileA.t 2>err &&- test_i18ngrep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err &&+ test_grep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err && test_must_fail git add --pathspec-file-nul 2>err &&- test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err &&+ test_grep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err && # This case succeeds, but still prints to stderr git add --pathspec-from-file=empty_list 2>err &&- test_i18ngrep -e "Nothing specified, nothing added." err+ test_grep -e "Nothing specified, nothing added." err ' test_done
t/t3900-i18n-commit.sh
+4-4
index bfab245eb3..f27d09cfd9 100755--- a/t/t3900-i18n-commit.sh+++ b/t/t3900-i18n-commit.sh@@ -45,7 +45,7 @@ test_expect_success 'UTF-8 invalid characters refused' ' printf "Commit message\n\nInvalid surrogate:\355\240\200\n" \ >"$HOME/invalid" && git commit -a -F "$HOME/invalid" 2>"$HOME"/stderr &&- test_i18ngrep "did not conform" "$HOME"/stderr+ test_grep "did not conform" "$HOME"/stderr ' test_expect_success 'UTF-8 overlong sequences rejected' '@@ -55,7 +55,7 @@ test_expect_success 'UTF-8 overlong sequences rejected' ' printf "\340\202\251ommit message\n\nThis is not a space:\300\240\n" \ >"$HOME/invalid" && git commit -a -F "$HOME/invalid" 2>"$HOME"/stderr &&- test_i18ngrep "did not conform" "$HOME"/stderr+ test_grep "did not conform" "$HOME"/stderr ' test_expect_success 'UTF-8 non-characters refused' '@@ -64,7 +64,7 @@ test_expect_success 'UTF-8 non-characters refused' ' printf "Commit message\n\nNon-character:\364\217\277\276\n" \ >"$HOME/invalid" && git commit -a -F "$HOME/invalid" 2>"$HOME"/stderr &&- test_i18ngrep "did not conform" "$HOME"/stderr+ test_grep "did not conform" "$HOME"/stderr ' test_expect_success 'UTF-8 non-characters refused' '@@ -73,7 +73,7 @@ test_expect_success 'UTF-8 non-characters refused' ' printf "Commit message\n\nNon-character:\357\267\220\n" \ >"$HOME/invalid" && git commit -a -F "$HOME/invalid" 2>"$HOME"/stderr &&- test_i18ngrep "did not conform" "$HOME"/stderr+ test_grep "did not conform" "$HOME"/stderr ' for H in ISO8859-1 eucJP ISO-2022-JP
t/t3901-i18n-patch.sh
+1-1
index 4f16a735d9..4b37f78829 100755--- a/t/t3901-i18n-patch.sh+++ b/t/t3901-i18n-patch.sh@@ -298,7 +298,7 @@ test_expect_success 'am --no-utf8 (U/L)' ' # commit-tree will warn that the commit message does not contain valid UTF-8 # as mailinfo did not convert it- test_i18ngrep "did not conform" err &&+ test_grep "did not conform" err && check_encoding 2 '
t/t3903-stash.sh
+5-5
index 0b3dfeaea2..3bec71f056 100755--- a/t/t3903-stash.sh+++ b/t/t3903-stash.sh@@ -395,7 +395,7 @@ test_expect_success 'stash --staged' ' test_expect_success 'dont assume push with non-option args' ' test_must_fail git stash -q drop 2>err &&- test_i18ngrep -e "subcommand wasn'\''t specified; '\''push'\'' can'\''t be assumed due to unexpected token '\''drop'\''" err+ test_grep -e "subcommand wasn'\''t specified; '\''push'\'' can'\''t be assumed due to unexpected token '\''drop'\''" err ' test_expect_success 'stash --invalid-option' '@@ -596,7 +596,7 @@ test_expect_success 'giving too many ref arguments does not modify files' ' for type in apply pop "branch stash-branch" do test_must_fail git stash $type stash@{0} stash@{1} 2>err &&- test_i18ngrep "Too many revisions" err &&+ test_grep "Too many revisions" err && test 123456789 = $(test-tool chmtime -g file2) || return 1 done '@@ -604,14 +604,14 @@ test_expect_success 'giving too many ref arguments does not modify files' ' test_expect_success 'drop: too many arguments errors out (does nothing)' ' git stash list >expect && test_must_fail git stash drop stash@{0} stash@{1} 2>err &&- test_i18ngrep "Too many revisions" err &&+ test_grep "Too many revisions" err && git stash list >actual && test_cmp expect actual ' test_expect_success 'show: too many arguments errors out (does nothing)' ' test_must_fail git stash show stash@{0} stash@{1} 2>err 1>out &&- test_i18ngrep "Too many revisions" err &&+ test_grep "Too many revisions" err && test_must_be_empty out '@@ -654,7 +654,7 @@ test_expect_success 'stash branch - stashes on stack, stash-like argument' ' test_expect_success 'stash branch complains with no arguments' ' test_must_fail git stash branch 2>err &&- test_i18ngrep "No branch name specified" err+ test_grep "No branch name specified" err ' test_expect_success 'stash show format defaults to --stat' '
t/t3905-stash-include-untracked.sh
+1-1
index 5390eec4e3..1289ae3e07 100755--- a/t/t3905-stash-include-untracked.sh+++ b/t/t3905-stash-include-untracked.sh@@ -404,7 +404,7 @@ test_expect_success 'stash show --include-untracked errors on duplicate files' ' ) && w_commit=$(git commit-tree -p HEAD -p "$i_commit" -p "$u_commit" -m "WIP on any-branch" "$tree") && test_must_fail git stash show --include-untracked "$w_commit" 2>err &&- test_i18ngrep "worktree and untracked commit have duplicate entries: tracked" err+ test_grep "worktree and untracked commit have duplicate entries: tracked" err ' test_expect_success 'stash show --{include,only}-untracked on stashes without untracked entries' '
t/t3909-stash-pathspec-file.sh
+3-3
index dead9f18d9..73f2dbdeb0 100755--- a/t/t3909-stash-pathspec-file.sh+++ b/t/t3909-stash-pathspec-file.sh@@ -88,13 +88,13 @@ test_expect_success 'error conditions' ' echo fileA.t >list && test_must_fail git stash push --pathspec-from-file=list --patch 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err && test_must_fail git stash push --pathspec-from-file=list -- fileA.t 2>err &&- test_i18ngrep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err &&+ test_grep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err && test_must_fail git stash push --pathspec-file-nul 2>err &&- test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err+ test_grep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err ' test_done
t/t4001-diff-rename.sh
+17-17
index 3dc9047044..85be1367de 100755--- a/t/t4001-diff-rename.sh+++ b/t/t4001-diff-rename.sh@@ -135,25 +135,25 @@ test_expect_success 'favour same basenames over different ones' ' mkdir subdir && git mv another-path subdir/path1 && git status >out &&- test_i18ngrep "renamed: .*path1 -> subdir/path1" out+ test_grep "renamed: .*path1 -> subdir/path1" out ' test_expect_success 'test diff.renames=true for git status' ' git -c diff.renames=true status >out &&- test_i18ngrep "renamed: .*path1 -> subdir/path1" out+ test_grep "renamed: .*path1 -> subdir/path1" out ' test_expect_success 'test diff.renames=false for git status' ' git -c diff.renames=false status >out &&- test_i18ngrep ! "renamed: .*path1 -> subdir/path1" out &&- test_i18ngrep "new file: .*subdir/path1" out &&- test_i18ngrep "deleted: .*[^/]path1" out+ test_grep ! "renamed: .*path1 -> subdir/path1" out &&+ test_grep "new file: .*subdir/path1" out &&+ test_grep "deleted: .*[^/]path1" out ' test_expect_success 'favour same basenames even with minor differences' ' git show HEAD:path1 | sed "s/15/16/" > subdir/path1 && git status >out &&- test_i18ngrep "renamed: .*path1 -> subdir/path1" out+ test_grep "renamed: .*path1 -> subdir/path1" out ' test_expect_success 'two files with same basename and same content' '@@ -165,7 +165,7 @@ test_expect_success 'two files with same basename and same content' ' git commit -m 2 && git mv dir other-dir && git status >out &&- test_i18ngrep "renamed: .*dir/A/file -> other-dir/A/file" out+ test_grep "renamed: .*dir/A/file -> other-dir/A/file" out ' test_expect_success 'setup for many rename source candidates' '@@ -202,9 +202,9 @@ test_expect_success 'rename pretty print with nothing in common' ' git mv a/b/c c/b/a && git commit -m "a/b/c -> c/b/a" && git diff -M --summary HEAD^ HEAD >output &&- test_i18ngrep " a/b/c => c/b/a " output &&+ test_grep " a/b/c => c/b/a " output && git diff -M --stat HEAD^ HEAD >output &&- test_i18ngrep " a/b/c => c/b/a " output+ test_grep " a/b/c => c/b/a " output ' test_expect_success 'rename pretty print with common prefix' '@@ -212,9 +212,9 @@ test_expect_success 'rename pretty print with common prefix' ' git mv c/b/a c/d/e && git commit -m "c/b/a -> c/d/e" && git diff -M --summary HEAD^ HEAD >output &&- test_i18ngrep " c/{b/a => d/e} " output &&+ test_grep " c/{b/a => d/e} " output && git diff -M --stat HEAD^ HEAD >output &&- test_i18ngrep " c/{b/a => d/e} " output+ test_grep " c/{b/a => d/e} " output ' test_expect_success 'rename pretty print with common suffix' '@@ -222,9 +222,9 @@ test_expect_success 'rename pretty print with common suffix' ' git mv c/d/e d/e && git commit -m "c/d/e -> d/e" && git diff -M --summary HEAD^ HEAD >output &&- test_i18ngrep " {c/d => d}/e " output &&+ test_grep " {c/d => d}/e " output && git diff -M --stat HEAD^ HEAD >output &&- test_i18ngrep " {c/d => d}/e " output+ test_grep " {c/d => d}/e " output ' test_expect_success 'rename pretty print with common prefix and suffix' '@@ -232,9 +232,9 @@ test_expect_success 'rename pretty print with common prefix and suffix' ' git mv d/e d/f/e && git commit -m "d/e -> d/f/e" && git diff -M --summary HEAD^ HEAD >output &&- test_i18ngrep " d/{ => f}/e " output &&+ test_grep " d/{ => f}/e " output && git diff -M --stat HEAD^ HEAD >output &&- test_i18ngrep " d/{ => f}/e " output+ test_grep " d/{ => f}/e " output ' test_expect_success 'rename pretty print common prefix and suffix overlap' '@@ -242,9 +242,9 @@ test_expect_success 'rename pretty print common prefix and suffix overlap' ' git mv d/f/e d/f/f/e && git commit -m "d/f/e d/f/f/e" && git diff -M --summary HEAD^ HEAD >output &&- test_i18ngrep " d/f/{ => f}/e " output &&+ test_grep " d/f/{ => f}/e " output && git diff -M --stat HEAD^ HEAD >output &&- test_i18ngrep " d/f/{ => f}/e " output+ test_grep " d/f/{ => f}/e " output ' test_expect_success 'diff-tree -l0 defaults to a big rename limit, not zero' '
t/t4013-diff-various.sh
+1-1
index 5de1d19075..86f3693bc0 100755--- a/t/t4013-diff-various.sh+++ b/t/t4013-diff-various.sh@@ -613,7 +613,7 @@ test_expect_success 'diff -I<regex> --stat' ' test_expect_success 'diff -I<regex>: detect malformed regex' ' test_expect_code 129 git diff --ignore-matching-lines="^[124-9" 2>error &&- test_i18ngrep "invalid regex given to -I: " error+ test_grep "invalid regex given to -I: " error ' # check_prefix <patch> <src> <dst>
index 8e4effebdb..d7382709fc 100755--- a/t/t4201-shortlog.sh+++ b/t/t4201-shortlog.sh@@ -139,7 +139,7 @@ test_expect_success !MINGW 'shortlog can read --format=raw output' ' test_expect_success 'shortlog from non-git directory refuses extra arguments' ' test_must_fail env GIT_DIR=non-existing git shortlog foo 2>out &&- test_i18ngrep "too many arguments" out+ test_grep "too many arguments" out ' test_expect_success 'shortlog should add newline when input line matches wraplen' '
t/t4202-log.sh
+9-9
index af4a123cd2..708636671a 100755--- a/t/t4202-log.sh+++ b/t/t4202-log.sh@@ -1884,7 +1884,7 @@ test_expect_success '--no-graph does not unset --parents' ' test_expect_success '--reverse and --graph conflict' ' test_must_fail git log --reverse --graph 2>stderr &&- test_i18ngrep "cannot be used together" stderr+ test_grep "cannot be used together" stderr ' test_expect_success '--reverse --graph --no-graph works' '@@ -1895,7 +1895,7 @@ test_expect_success '--reverse --graph --no-graph works' ' test_expect_success '--show-linear-break and --graph conflict' ' test_must_fail git log --show-linear-break --graph 2>stderr &&- test_i18ngrep "cannot be used together" stderr+ test_grep "cannot be used together" stderr ' test_expect_success '--show-linear-break --graph --no-graph works' '@@ -1906,7 +1906,7 @@ test_expect_success '--show-linear-break --graph --no-graph works' ' test_expect_success '--no-walk and --graph conflict' ' test_must_fail git log --no-walk --graph 2>stderr &&- test_i18ngrep "cannot be used together" stderr+ test_grep "cannot be used together" stderr ' test_expect_success '--no-walk --graph --no-graph works' '@@ -1917,8 +1917,8 @@ test_expect_success '--no-walk --graph --no-graph works' ' test_expect_success '--walk-reflogs and --graph conflict' ' test_must_fail git log --walk-reflogs --graph 2>stderr &&- (test_i18ngrep "cannot combine" stderr ||- test_i18ngrep "cannot be used together" stderr)+ (test_grep "cannot combine" stderr ||+ test_grep "cannot be used together" stderr) ' test_expect_success '--walk-reflogs --graph --no-graph works' '@@ -2252,7 +2252,7 @@ test_expect_success 'log on empty repo fails' ' git init empty && test_when_finished "rm -rf empty" && test_must_fail git -C empty log 2>stderr &&- test_i18ngrep does.not.have.any.commits stderr+ test_grep does.not.have.any.commits stderr ' test_expect_success REFFILES 'log diagnoses bogus HEAD hash' '@@ -2260,16 +2260,16 @@ test_expect_success REFFILES 'log diagnoses bogus HEAD hash' ' test_when_finished "rm -rf empty" && echo 1234abcd >empty/.git/refs/heads/main && test_must_fail git -C empty log 2>stderr &&- test_i18ngrep broken stderr+ test_grep broken stderr ' test_expect_success REFFILES 'log diagnoses bogus HEAD symref' ' git init empty && echo "ref: refs/heads/invalid.lock" > empty/.git/HEAD && test_must_fail git -C empty log 2>stderr &&- test_i18ngrep broken stderr &&+ test_grep broken stderr && test_must_fail git -C empty log --default totally-bogus 2>stderr &&- test_i18ngrep broken stderr+ test_grep broken stderr ' test_expect_success 'log does not default to HEAD when rev input is given' '
t/t4203-mailmap.sh
+1-1
index 2016132f51..8a88dd7900 100755--- a/t/t4203-mailmap.sh+++ b/t/t4203-mailmap.sh@@ -360,7 +360,7 @@ test_expect_success 'mailmap.blob might be the wrong type' ' cp default.map .mailmap && git -c mailmap.blob=HEAD: shortlog HEAD >actual 2>err &&- test_i18ngrep "mailmap is not a blob" err &&+ test_grep "mailmap is not a blob" err && test_cmp expect actual '
t/t4208-log-magic-pathspec.sh
+3-3
index 2e8f5ad7b8..806b2809d4 100755--- a/t/t4208-log-magic-pathspec.sh+++ b/t/t4208-log-magic-pathspec.sh@@ -21,7 +21,7 @@ test_expect_success '"git log :/" should not be ambiguous' ' test_expect_success '"git log :/a" should be ambiguous (applied both rev and worktree)' ' : >a && test_must_fail git log :/a 2>error &&- test_i18ngrep ambiguous error+ test_grep ambiguous error ' test_expect_success '"git log :/a -- " should not be ambiguous' '@@ -65,7 +65,7 @@ test_expect_success '"git log :/in" should not be ambiguous' ' test_expect_success '"git log :" should be ambiguous' ' test_must_fail git log : 2>error &&- test_i18ngrep ambiguous error+ test_grep ambiguous error ' test_expect_success 'git log -- :' '@@ -104,7 +104,7 @@ test_expect_success '"git log :(exclude)sub --" must resolve as an object' ' test_expect_success '"git log :(unknown-magic) complains of bogus magic' ' test_must_fail git log ":(unknown-magic)" 2>error &&- test_i18ngrep pathspec.magic error+ test_grep pathspec.magic error ' test_expect_success 'command line pathspec parsing for "git log"' '
t/t4209-log-pickaxe.sh
+2-2
index 7f6bb27f14..64e1623733 100755--- a/t/t4209-log-pickaxe.sh+++ b/t/t4209-log-pickaxe.sh@@ -57,10 +57,10 @@ test_expect_success setup ' test_expect_success 'usage' ' test_expect_code 129 git log -S 2>err &&- test_i18ngrep "switch.*requires a value" err &&+ test_grep "switch.*requires a value" err && test_expect_code 129 git log -G 2>err &&- test_i18ngrep "switch.*requires a value" err &&+ test_grep "switch.*requires a value" err && test_expect_code 128 git log -Gregex -Sstring 2>err && grep "cannot be used together" err &&
t/t4211-line-log.sh
+2-2
index c6540e822f..02d76dca28 100755--- a/t/t4211-line-log.sh+++ b/t/t4211-line-log.sh@@ -19,7 +19,7 @@ test_expect_success 'basic command line parsing' ' # -L requires there is no pathspec test_must_fail git log -L1,1:b.c -- b.c 2>error &&- test_i18ngrep "cannot be used with pathspec" error &&+ test_grep "cannot be used with pathspec" error && # This would fail because --follow wants a single path, but # we may fail due to incompatibility between -L/--follow in@@ -50,7 +50,7 @@ canned_test_failure () { test_bad_opts () { test_expect_success "invalid args: $1" " test_must_fail git log $1 2>errors &&- test_i18ngrep '$2' errors+ test_grep '$2' errors " }
index acab31667a..2dcf1eecee 100755--- a/t/t5331-pack-objects-stdin.sh+++ b/t/t5331-pack-objects-stdin.sh@@ -65,7 +65,7 @@ test_expect_success '--stdin-packs is incompatible with --filter' ' cd stdin-packs && test_must_fail git pack-objects --stdin-packs --stdout \ --filter=blob:none </dev/null 2>err &&- test_i18ngrep "cannot use --filter with --stdin-packs" err+ test_grep "cannot use --filter with --stdin-packs" err ) '@@ -74,7 +74,7 @@ test_expect_success '--stdin-packs is incompatible with --revs' ' cd stdin-packs && test_must_fail git pack-objects --stdin-packs --revs out \ </dev/null 2>err &&- test_i18ngrep "cannot use internal rev list with --stdin-packs" err+ test_grep "cannot use internal rev list with --stdin-packs" err ) '
t/t5411/test-0026-push-options.sh
+1-1
index 6dfc7b1c0d..510fff38da 100644--- a/t/t5411/test-0026-push-options.sh+++ b/t/t5411/test-0026-push-options.sh@@ -18,7 +18,7 @@ test_expect_success "proc-receive: not support push options ($PROTOCOL)" ' HEAD:refs/for/main/topic \ >out-$test_count 2>&1 && make_user_friendly_and_stable_output <out-$test_count >actual &&- test_i18ngrep "fatal: the receiving end does not support push options" \+ test_grep "fatal: the receiving end does not support push options" \ actual && test_cmp_refs -C "$upstream" <<-EOF
t/t5411/test-0027-push-options--porcelain.sh
+1-1
index 768880b40f..9435457de0 100644--- a/t/t5411/test-0027-push-options--porcelain.sh+++ b/t/t5411/test-0027-push-options--porcelain.sh@@ -19,7 +19,7 @@ test_expect_success "proc-receive: not support push options ($PROTOCOL/porcelain HEAD:refs/for/main/topic \ >out-$test_count 2>&1 && make_user_friendly_and_stable_output <out-$test_count >actual &&- test_i18ngrep "fatal: the receiving end does not support push options" \+ test_grep "fatal: the receiving end does not support push options" \ actual && test_cmp_refs -C "$upstream" <<-EOF
t/t5500-fetch-pack.sh
+5-5
index d18f2823d8..573e62341f 100755--- a/t/t5500-fetch-pack.sh+++ b/t/t5500-fetch-pack.sh@@ -403,7 +403,7 @@ test_expect_success 'in_vain not triggered before first ACK' ' test_commit -C myserver bar && git -C myclient fetch --progress origin 2>log &&- test_i18ngrep "remote: Total 3 " log+ test_grep "remote: Total 3 " log ' test_expect_success 'in_vain resetted upon ACK' '@@ -435,7 +435,7 @@ test_expect_success 'in_vain resetted upon ACK' ' # the client reports that first_anotherbranch_commit is common. GIT_TRACE2_EVENT="$(pwd)/trace2" git -C myclient fetch --progress origin main 2>log && grep \"key\":\"total_rounds\",\"value\":\"6\" trace2 &&- test_i18ngrep "Total 3 " log+ test_grep "Total 3 " log ' test_expect_success 'fetch in shallow repo unreachable shallow objects' '@@ -459,7 +459,7 @@ test_expect_success 'fetch creating new shallow root' ' git fetch --depth=1 --progress 2>actual && # This should fetch only the empty commit, no tree or # blob objects- test_i18ngrep "remote: Total 1" actual+ test_grep "remote: Total 1" actual ) '@@ -694,7 +694,7 @@ test_expect_success 'fetch-pack cannot fetch a raw sha1 that is not advertised a # unadvertised objects, so restrict this test to v0. test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 git -C client fetch-pack ../server \ $(git -C server rev-parse refs/heads/main^) 2>err &&- test_i18ngrep "Server does not allow request for unadvertised object" err+ test_grep "Server does not allow request for unadvertised object" err ' check_prot_path () {@@ -1010,7 +1010,7 @@ test_expect_success 'filtering by size has no effect if support for it is not ad git -C client rev-list --objects --missing=allow-any "$commit" >oids && grep "$blob" oids &&- test_i18ngrep "filtering not recognized by server" err+ test_grep "filtering not recognized by server" err ' fetch_filter_blob_limit_zero () {
index 43b7bcd715..7789ff12c4 100755--- a/t/t5505-remote.sh+++ b/t/t5505-remote.sh@@ -1075,7 +1075,7 @@ test_expect_success 'remote prune to cause a dangling symref' ' cd eight && git remote prune origin ) >err 2>&1 &&- test_i18ngrep "has become dangling" err &&+ test_grep "has become dangling" err && : And the dangling symref will not cause other annoying errors && (@@ -1087,7 +1087,7 @@ test_expect_success 'remote prune to cause a dangling symref' ' cd eight && test_must_fail git branch nomore origin ) 2>err &&- test_i18ngrep "dangling symref" err+ test_grep "dangling symref" err ' test_expect_success 'show empty remote' '@@ -1419,7 +1419,7 @@ test_expect_success 'extra args: setup' ' test_extra_arg () { test_expect_success "extra args: $*" " test_must_fail git remote $* bogus_extra_arg 2>actual &&- test_i18ngrep '^usage:' actual+ test_grep '^usage:' actual " }@@ -1453,12 +1453,12 @@ test_expect_success 'unqualified <dst> refspec DWIM and advice' ' oid=$(git rev-parse some-tag^{$type}) fi && test_must_fail git push origin $oid:dst 2>err &&- test_i18ngrep "error: The destination you" err &&- test_i18ngrep "hint: Did you mean" err &&+ test_grep "error: The destination you" err &&+ test_grep "hint: Did you mean" err && test_must_fail git -c advice.pushUnqualifiedRefName=false \ push origin $oid:dst 2>err &&- test_i18ngrep "error: The destination you" err &&- test_i18ngrep ! "hint: Did you mean" err ||+ test_grep "error: The destination you" err &&+ test_grep ! "hint: Did you mean" err || exit 1 done )@@ -1479,16 +1479,16 @@ test_expect_success 'refs/remotes/* <src> refspec and unqualified <dst> DWIM and git fetch --no-tags two && test_must_fail git push origin refs/remotes/two/another:dst 2>err &&- test_i18ngrep "error: The destination you" err &&+ test_grep "error: The destination you" err && test_must_fail git push origin refs/remotes/tags-from-two/my-tag:dst-tag 2>err &&- test_i18ngrep "error: The destination you" err &&+ test_grep "error: The destination you" err && test_must_fail git push origin refs/remotes/trees-from-two/my-head-tree:dst-tree 2>err &&- test_i18ngrep "error: The destination you" err &&+ test_grep "error: The destination you" err && test_must_fail git push origin refs/remotes/blobs-from-two/my-file-blob:dst-blob 2>err &&- test_i18ngrep "error: The destination you" err+ test_grep "error: The destination you" err ) '
t/t5510-fetch.sh
+4-4
index 4f289063ce..c940521bcc 100755--- a/t/t5510-fetch.sh+++ b/t/t5510-fetch.sh@@ -415,9 +415,9 @@ test_expect_success 'fetch uses remote ref names to describe new refs' ' ( cd descriptive && git fetch o 2>actual &&- test_i18ngrep "new branch.* -> refs/crazyheads/descriptive-branch$" actual &&- test_i18ngrep "new tag.* -> descriptive-tag$" actual &&- test_i18ngrep "new ref.* -> crazy$" actual+ test_grep "new branch.* -> refs/crazyheads/descriptive-branch$" actual &&+ test_grep "new tag.* -> descriptive-tag$" actual &&+ test_grep "new ref.* -> crazy$" actual ) && git checkout main '@@ -1113,7 +1113,7 @@ test_expect_success 'fetching with auto-gc does not lock up' ' git config gc.autoPackLimit 1 && git config gc.autoDetach false && GIT_ASK_YESNO="$D/askyesno" git fetch --verbose >fetch.out 2>&1 &&- test_i18ngrep "Auto packing the repository" fetch.out &&+ test_grep "Auto packing the repository" fetch.out && ! grep "Should I try again" fetch.out ) '
t/t5512-ls-remote.sh
+1-1
index 151c76eb09..5dbe107ce8 100755--- a/t/t5512-ls-remote.sh+++ b/t/t5512-ls-remote.sh@@ -320,7 +320,7 @@ test_expect_success 'ls-remote works outside repository' ' test_expect_success 'ls-remote --sort fails gracefully outside repository' ' # Use a sort key that requires access to the referenced objects. nongit test_must_fail git ls-remote --sort=authordate "$TRASH_DIRECTORY" 2>err &&- test_i18ngrep "^fatal: not a git repository, but the field '\''authordate'\'' requires access to object data" err+ test_grep "^fatal: not a git repository, but the field '\''authordate'\'' requires access to object data" err ' test_expect_success 'ls-remote patterns work with all protocol versions' '
t/t5514-fetch-multiple.sh
+2-2
index 98f034aa77..a95841dc36 100755--- a/t/t5514-fetch-multiple.sh+++ b/t/t5514-fetch-multiple.sh@@ -200,8 +200,8 @@ test_expect_success 'parallel' ' test_must_fail env GIT_TRACE="$PWD/trace" \ git fetch --jobs=2 --multiple one two 2>err && grep "preparing to run up to 2 tasks" trace &&- test_i18ngrep "could not fetch .one.*128" err &&- test_i18ngrep "could not fetch .two.*128" err+ test_grep "could not fetch .one.*128" err &&+ test_grep "could not fetch .two.*128" err ' test_expect_success 'git fetch --multiple --jobs=0 picks a default' '
t/t5516-fetch-push.sh
+4-4
index 87163d7745..2e7c0e1648 100755--- a/t/t5516-fetch-push.sh+++ b/t/t5516-fetch-push.sh@@ -227,7 +227,7 @@ test_expect_success 'push with negotiation proceeds anyway even if negotiation f GIT_TEST_PROTOCOL_VERSION=0 GIT_TRACE2_EVENT="$(pwd)/event" \ git -c push.negotiate=1 push testrepo refs/heads/main:refs/remotes/origin/main 2>err && grep_wrote 5 event && # 2 commits, 2 trees, 1 blob- test_i18ngrep "push negotiation failed" err+ test_grep "push negotiation failed" err ' test_expect_success 'push with negotiation does not attempt to fetch submodules' '@@ -1267,7 +1267,7 @@ test_expect_success 'fetch exact SHA1' ' # fetching the hidden object should fail by default test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \ git fetch -v ../testrepo $the_commit:refs/heads/copy 2>err &&- test_i18ngrep "Server does not allow request for unadvertised object" err &&+ test_grep "Server does not allow request for unadvertised object" err && test_must_fail git rev-parse --verify refs/heads/copy && # the server side can allow it to succeed@@ -1369,7 +1369,7 @@ do git fetch ../testrepo/.git $SHA1_3 2>err && # ideally we would insist this be on a "remote error:" # line, but it is racy; see the commit message- test_i18ngrep "not our ref.*$SHA1_3\$" err+ test_grep "not our ref.*$SHA1_3\$" err ) ' done@@ -1407,7 +1407,7 @@ test_expect_success 'peeled advertisements are not considered ref tips' ' oid=$(git -C testrepo rev-parse mytag^{commit}) && test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \ git fetch testrepo $oid 2>err &&- test_i18ngrep "Server does not allow request for unadvertised object" err+ test_grep "Server does not allow request for unadvertised object" err ' test_expect_success 'pushing a specific ref applies remote.$name.push as refmap' '
t/t5520-pull.sh
+17-17
index 0b72112fb1..47534f1062 100755--- a/t/t5520-pull.sh+++ b/t/t5520-pull.sh@@ -31,7 +31,7 @@ test_pull_autostash_fail () { echo dirty >new_file && git add new_file && test_must_fail git pull "$@" . copy 2>err &&- test_i18ngrep -E "uncommitted changes.|overwritten by merge:" err+ test_grep -E "uncommitted changes.|overwritten by merge:" err } test_expect_success setup '@@ -151,7 +151,7 @@ test_expect_success 'fail if wildcard spec does not match any refs' ' echo file >expect && test_cmp expect file && test_must_fail git pull . "refs/nonexisting1/*:refs/nonexisting2/*" 2>err &&- test_i18ngrep "no candidates for merging" err &&+ test_grep "no candidates for merging" err && test_cmp expect file '@@ -164,7 +164,7 @@ test_expect_success 'fail if no branches specified with non-default remote' ' test_cmp expect file && test_config branch.test.remote origin && test_must_fail git pull test_remote 2>err &&- test_i18ngrep "specify a branch on the command line" err &&+ test_grep "specify a branch on the command line" err && test_cmp expect file '@@ -176,7 +176,7 @@ test_expect_success 'fail if not on a branch' ' echo file >expect && test_cmp expect file && test_must_fail git pull 2>err &&- test_i18ngrep "not currently on a branch" err &&+ test_grep "not currently on a branch" err && test_cmp expect file '@@ -189,7 +189,7 @@ test_expect_success 'fail if no configuration for current branch' ' echo file >expect && test_cmp expect file && test_must_fail git pull 2>err &&- test_i18ngrep "no tracking information" err &&+ test_grep "no tracking information" err && test_cmp expect file '@@ -202,7 +202,7 @@ test_expect_success 'pull --all: fail if no configuration for current branch' ' echo file >expect && test_cmp expect file && test_must_fail git pull --all 2>err &&- test_i18ngrep "There is no tracking information" err &&+ test_grep "There is no tracking information" err && test_cmp expect file '@@ -214,7 +214,7 @@ test_expect_success 'fail if upstream branch does not exist' ' echo file >expect && test_cmp expect file && test_must_fail git pull 2>err &&- test_i18ngrep "no such ref was fetched" err &&+ test_grep "no such ref was fetched" err && test_cmp expect file '@@ -248,13 +248,13 @@ test_expect_success 'fail if the index has unresolved entries' ' test_file_not_empty unmerged && cp file expected && test_must_fail git pull . second 2>err &&- test_i18ngrep "Pulling is not possible because you have unmerged files." err &&+ test_grep "Pulling is not possible because you have unmerged files." err && test_cmp expected file && git add file && git ls-files -u >unmerged && test_must_be_empty unmerged && test_must_fail git pull . second 2>err &&- test_i18ngrep "You have not concluded your merge" err &&+ test_grep "You have not concluded your merge" err && test_cmp expected file '@@ -264,7 +264,7 @@ test_expect_success 'fast-forwards working tree if branch head is updated' ' echo file >expect && test_cmp expect file && git pull . second:third 2>err &&- test_i18ngrep "fetch updated the current branch head" err &&+ test_grep "fetch updated the current branch head" err && echo modified >expect && test_cmp expect file && test_cmp_rev third second@@ -277,7 +277,7 @@ test_expect_success 'fast-forward fails with conflicting work tree' ' test_cmp expect file && echo conflict >file && test_must_fail git pull . second:third 2>err &&- test_i18ngrep "Cannot fast-forward your working tree" err &&+ test_grep "Cannot fast-forward your working tree" err && echo conflict >expect && test_cmp expect file && test_cmp_rev third second@@ -375,7 +375,7 @@ test_expect_success '--rebase with conflicts shows advice' ' test_tick && git commit -m "Create conflict" seq.txt && test_must_fail git pull --rebase . seq 2>err >out &&- test_i18ngrep "Resolve all conflicts manually" err+ test_grep "Resolve all conflicts manually" err ' test_expect_success 'failed --rebase shows advice' '@@ -389,14 +389,14 @@ test_expect_success 'failed --rebase shows advice' ' git checkout -f -b fails-to-rebase HEAD^ && test_commit v2-without-cr file "2" file2-lf && test_must_fail git pull --rebase . diverging 2>err >out &&- test_i18ngrep "Resolve all conflicts manually" err+ test_grep "Resolve all conflicts manually" err ' test_expect_success '--rebase fails with multiple branches' ' git reset --hard before-rebase && test_must_fail git pull --rebase . copy main 2>err && test_cmp_rev HEAD before-rebase &&- test_i18ngrep "Cannot rebase onto multiple branches" err &&+ test_grep "Cannot rebase onto multiple branches" err && echo modified >expect && git show HEAD:file >actual && test_cmp expect actual@@ -520,7 +520,7 @@ test_expect_success 'pull --rebase warns on --verify-signatures' ' echo new >expect && git show HEAD:file2 >actual && test_cmp expect actual &&- test_i18ngrep "ignoring --verify-signatures for rebase" err+ test_grep "ignoring --verify-signatures for rebase" err ' test_expect_success 'pull --rebase does not warn on --no-verify-signatures' '@@ -530,7 +530,7 @@ test_expect_success 'pull --rebase does not warn on --no-verify-signatures' ' echo new >expect && git show HEAD:file2 >actual && test_cmp expect actual &&- test_i18ngrep ! "verify-signatures" err+ test_grep ! "verify-signatures" err ' # add a feature branch, keep-merge, that is merged into main, so the@@ -740,7 +740,7 @@ test_expect_success 'pull --rebase fails on unborn branch with staged changes' ' test_cmp expect actual && git show :staged-file >actual && test_cmp expect actual &&- test_i18ngrep "unborn branch with changes added to the index" err+ test_grep "unborn branch with changes added to the index" err ) '
index 1b8d609879..1f859ade16 100755--- a/t/t5523-push-upstream.sh+++ b/t/t5523-push-upstream.sh@@ -87,7 +87,7 @@ test_expect_success TTY 'progress messages go to tty' ' ensure_fresh_upstream && test_terminal git push -u upstream main >out 2>err &&- test_i18ngrep "Writing objects" err+ test_grep "Writing objects" err ' test_expect_success 'progress messages do not go to non-tty' '@@ -95,7 +95,7 @@ test_expect_success 'progress messages do not go to non-tty' ' # skip progress messages, since stderr is non-tty git push -u upstream main >out 2>err &&- test_i18ngrep ! "Writing objects" err+ test_grep ! "Writing objects" err ' test_expect_success 'progress messages go to non-tty (forced)' '@@ -103,22 +103,22 @@ test_expect_success 'progress messages go to non-tty (forced)' ' # force progress messages to stderr, even though it is non-tty git push -u --progress upstream main >out 2>err &&- test_i18ngrep "Writing objects" err+ test_grep "Writing objects" err ' test_expect_success TTY 'push -q suppresses progress' ' ensure_fresh_upstream && test_terminal git push -u -q upstream main >out 2>err &&- test_i18ngrep ! "Writing objects" err+ test_grep ! "Writing objects" err ' test_expect_success TTY 'push --no-progress suppresses progress' ' ensure_fresh_upstream && test_terminal git push -u --no-progress upstream main >out 2>err &&- test_i18ngrep ! "Unpacking objects" err &&- test_i18ngrep ! "Writing objects" err+ test_grep ! "Unpacking objects" err &&+ test_grep ! "Writing objects" err ' test_expect_success TTY 'quiet push' '
t/t5528-push-default.sh
+1-1
index 284e20fefd..14f7eced9a 100755--- a/t/t5528-push-default.sh+++ b/t/t5528-push-default.sh@@ -179,7 +179,7 @@ test_expect_success 'push from/to new branch succeeds with simple if push.autoSe test_expect_success '"matching" fails if none match' ' git init --bare empty && test_must_fail git push empty : 2>actual &&- test_i18ngrep "Perhaps you should specify a branch" actual+ test_grep "Perhaps you should specify a branch" actual ' test_expect_success 'push ambiguously named branch with upstream, matching and simple' '
index 302e4cbdba..f3fff55744 100755--- a/t/t5531-deep-submodule-push.sh+++ b/t/t5531-deep-submodule-push.sh@@ -311,7 +311,7 @@ test_expect_success 'submodule entry pointing at a tag is error' ' git -C work commit -m "bad commit" && test_when_finished "git -C work reset --hard HEAD^" && test_must_fail git -C work push --recurse-submodules=on-demand ../pub.git main 2>err &&- test_i18ngrep "is a tag, not a commit" err+ test_grep "is a tag, not a commit" err ' test_expect_success 'push fails if recurse submodules option passed as yes' '
t/t5534-push-signed.sh
+3-3
index 7c0a148e73..b4bc24691c 100755--- a/t/t5534-push-signed.sh+++ b/t/t5534-push-signed.sh@@ -68,13 +68,13 @@ test_expect_success 'talking with a receiver without push certificate support' ' test_expect_success 'push --signed fails with a receiver without push certificate support' ' prepare_dst && test_must_fail git push --signed dst noop ff +noff 2>err &&- test_i18ngrep "the receiving end does not support" err+ test_grep "the receiving end does not support" err ' test_expect_success 'push --signed=1 is accepted' ' prepare_dst && test_must_fail git push --signed=1 dst noop ff +noff 2>err &&- test_i18ngrep "the receiving end does not support" err+ test_grep "the receiving end does not support" err ' test_expect_success GPG 'no certificate for a signed push with no update' '@@ -378,7 +378,7 @@ test_expect_success GPG 'failed atomic push does not execute GPG' ' --signed --atomic --porcelain \ dst noop ff noff >out 2>err &&- test_i18ngrep ! "gpg failed to sign" err &&+ test_grep ! "gpg failed to sign" err && cat >expect <<-EOF && To dst = refs/heads/noop:refs/heads/noop [up to date]
t/t5536-fetch-conflicts.sh
+4-4
index 91f28c2f78..23bf696170 100755--- a/t/t5536-fetch-conflicts.sh+++ b/t/t5536-fetch-conflicts.sh@@ -40,7 +40,7 @@ test_expect_success 'fetch conflict: config vs. config' ' "+refs/heads/branch2:refs/remotes/origin/branch1" && ( cd ccc && test_must_fail git fetch origin 2>error &&- test_i18ngrep "fatal: Cannot fetch both refs/heads/branch1 and refs/heads/branch2 to refs/remotes/origin/branch1" error+ test_grep "fatal: Cannot fetch both refs/heads/branch1 and refs/heads/branch2 to refs/remotes/origin/branch1" error ) '@@ -67,7 +67,7 @@ test_expect_success 'fetch conflict: arg vs. arg' ' test_must_fail git fetch origin \ refs/heads/*:refs/remotes/origin/* \ refs/heads/branch2:refs/remotes/origin/branch1 2>error &&- test_i18ngrep "fatal: Cannot fetch both refs/heads/branch1 and refs/heads/branch2 to refs/remotes/origin/branch1" error+ test_grep "fatal: Cannot fetch both refs/heads/branch1 and refs/heads/branch2 to refs/remotes/origin/branch1" error ) '@@ -78,8 +78,8 @@ test_expect_success 'fetch conflict: criss-cross args' ' git fetch origin \ refs/heads/branch1:refs/remotes/origin/branch2 \ refs/heads/branch2:refs/remotes/origin/branch1 2>error &&- test_i18ngrep "warning: refs/remotes/origin/branch1 usually tracks refs/heads/branch1, not refs/heads/branch2" error &&- test_i18ngrep "warning: refs/remotes/origin/branch2 usually tracks refs/heads/branch2, not refs/heads/branch1" error+ test_grep "warning: refs/remotes/origin/branch1 usually tracks refs/heads/branch1, not refs/heads/branch2" error &&+ test_grep "warning: refs/remotes/origin/branch2 usually tracks refs/heads/branch2, not refs/heads/branch1" error ) '
t/t5541-http-push-smart.sh
+10-10
index d0211cd8be..df758e187d 100755--- a/t/t5541-http-push-smart.sh+++ b/t/t5541-http-push-smart.sh@@ -153,7 +153,7 @@ test_expect_success 'push fails for non-fast-forward refs unmatched by remote he ' test_expect_success 'push fails for non-fast-forward refs unmatched by remote helper: our output' '- test_i18ngrep "Updates were rejected because" \+ test_grep "Updates were rejected because" \ output '@@ -297,7 +297,7 @@ test_expect_success TTY 'push shows progress when stderr is a tty' ' cd "$ROOT_PATH"/test_repo_clone && test_commit noisy && test_terminal git push >output 2>&1 &&- test_i18ngrep "^Writing objects" output+ test_grep "^Writing objects" output ' test_expect_success TTY 'push --quiet silences status and progress' '@@ -311,16 +311,16 @@ test_expect_success TTY 'push --no-progress silences progress but not status' ' cd "$ROOT_PATH"/test_repo_clone && test_commit no-progress && test_terminal git push --no-progress >output 2>&1 &&- test_i18ngrep "^To http" output &&- test_i18ngrep ! "^Writing objects" output+ test_grep "^To http" output &&+ test_grep ! "^Writing objects" output ' test_expect_success 'push --progress shows progress to non-tty' ' cd "$ROOT_PATH"/test_repo_clone && test_commit progress && git push --progress >output 2>&1 &&- test_i18ngrep "^To http" output &&- test_i18ngrep "^Writing objects" output+ test_grep "^To http" output &&+ test_grep "^Writing objects" output ' test_expect_success 'http push gives sane defaults to reflog' '@@ -489,10 +489,10 @@ test_expect_success 'colorize errors/hints' ' -c color.push=always \ push origin origin/main^:main 2>act && test_decode_color <act >decoded &&- test_i18ngrep "<RED>.*rejected.*<RESET>" decoded &&- test_i18ngrep "<RED>error: failed to push some refs" decoded &&- test_i18ngrep "<YELLOW>hint: " decoded &&- test_i18ngrep ! "^hint: " decoded+ test_grep "<RED>.*rejected.*<RESET>" decoded &&+ test_grep "<RED>error: failed to push some refs" decoded &&+ test_grep "<YELLOW>hint: " decoded &&+ test_grep ! "^hint: " decoded ' test_expect_success 'report error server does not provide ref status' '
t/t5545-push-options.sh
+1-1
index a158e7d2c0..fb13549da7 100755--- a/t/t5545-push-options.sh+++ b/t/t5545-push-options.sh@@ -252,7 +252,7 @@ test_expect_success 'push option denied properly by http server' ' mk_http_pair false && test_commit -C test_http_clone one && test_must_fail git -C test_http_clone push --push-option=asdf origin main 2>actual &&- test_i18ngrep "the receiving end does not support push options" actual &&+ test_grep "the receiving end does not support push options" actual && git -C test_http_clone push origin main '
t/t5550-http-fetch-dumb.sh
+4-4
index 8f182a3cbf..e444b30bf6 100755--- a/t/t5550-http-fetch-dumb.sh+++ b/t/t5550-http-fetch-dumb.sh@@ -376,7 +376,7 @@ test_expect_success 'git client send an empty Accept-Language' ' test_expect_success 'remote-http complains cleanly about malformed urls' ' test_must_fail git remote-http http::/example.com/repo.git 2>stderr &&- test_i18ngrep "url has no scheme" stderr+ test_grep "url has no scheme" stderr ' # NEEDSWORK: Writing commands to git-remote-curl can race against the latter@@ -385,7 +385,7 @@ test_expect_success 'remote-http complains cleanly about malformed urls' ' test_expect_success 'remote-http complains cleanly about empty scheme' ' test_must_fail ok=sigpipe git ls-remote \ http::${HTTPD_URL#http}/dumb/repo.git 2>stderr &&- test_i18ngrep "url has no scheme" stderr+ test_grep "url has no scheme" stderr ' test_expect_success 'redirects can be forbidden/allowed' '@@ -397,7 +397,7 @@ test_expect_success 'redirects can be forbidden/allowed' ' test_expect_success 'redirects are reported to stderr' ' # just look for a snippet of the redirected-to URL- test_i18ngrep /dumb/ stderr+ test_grep /dumb/ stderr ' test_expect_success 'non-initial redirects can be forbidden' '@@ -466,7 +466,7 @@ test_expect_success 'can redirect through non-"info/refs?service=git-upload-pack test_expect_success 'print HTTP error when any intermediate redirect throws error' ' test_must_fail git clone "$HTTPD_URL/redir-to/502" 2> stderr &&- test_i18ngrep "unable to access.*/redir-to/502" stderr+ test_grep "unable to access.*/redir-to/502" stderr ' test_expect_success 'fetching via http alternates works' '
index 4e917bf87d..51744521f7 100755--- a/t/t5572-pull-submodule.sh+++ b/t/t5572-pull-submodule.sh@@ -177,7 +177,7 @@ test_expect_success 'pull --rebase --recurse-submodules fails if both sides reco # submodule itself, but the merge strategy in submodules # does not support rebase: test_must_fail git -C super pull --rebase --recurse-submodules 2>err &&- test_i18ngrep "locally recorded submodule modifications" err+ test_grep "locally recorded submodule modifications" err ' test_expect_success 'pull --rebase --recurse-submodules (no submodule changes, no fork-point)' '
t/t5573-pull-verify-signatures.sh
+13-13
index 1221ac0597..ab05f38a99 100755--- a/t/t5573-pull-verify-signatures.sh+++ b/t/t5573-pull-verify-signatures.sh@@ -47,46 +47,46 @@ test_expect_success GPG 'create repositories with signed commits' ' test_expect_success GPG 'pull unsigned commit with --verify-signatures' ' test_when_finished "git reset --hard && git checkout initial" && test_must_fail git pull --ff-only --verify-signatures unsigned 2>pullerror &&- test_i18ngrep "does not have a GPG signature" pullerror+ test_grep "does not have a GPG signature" pullerror ' test_expect_success GPG 'pull commit with bad signature with --verify-signatures' ' test_when_finished "git reset --hard && git checkout initial" && test_must_fail git pull --ff-only --verify-signatures bad 2>pullerror &&- test_i18ngrep "has a bad GPG signature" pullerror+ test_grep "has a bad GPG signature" pullerror ' test_expect_success GPG 'pull commit with untrusted signature with --verify-signatures' ' test_when_finished "git reset --hard && git checkout initial" && test_must_fail git pull --ff-only --verify-signatures untrusted 2>pullerror &&- test_i18ngrep "has an untrusted GPG signature" pullerror+ test_grep "has an untrusted GPG signature" pullerror ' test_expect_success GPG 'pull commit with untrusted signature with --verify-signatures and minTrustLevel=ultimate' ' test_when_finished "git reset --hard && git checkout initial" && test_config gpg.minTrustLevel ultimate && test_must_fail git pull --ff-only --verify-signatures untrusted 2>pullerror &&- test_i18ngrep "has an untrusted GPG signature" pullerror+ test_grep "has an untrusted GPG signature" pullerror ' test_expect_success GPG 'pull commit with untrusted signature with --verify-signatures and minTrustLevel=marginal' ' test_when_finished "git reset --hard && git checkout initial" && test_config gpg.minTrustLevel marginal && test_must_fail git pull --ff-only --verify-signatures untrusted 2>pullerror &&- test_i18ngrep "has an untrusted GPG signature" pullerror+ test_grep "has an untrusted GPG signature" pullerror ' test_expect_success GPG 'pull commit with untrusted signature with --verify-signatures and minTrustLevel=undefined' ' test_when_finished "git reset --hard && git checkout initial" && test_config gpg.minTrustLevel undefined && git pull --ff-only --verify-signatures untrusted >pulloutput &&- test_i18ngrep "has a good GPG signature" pulloutput+ test_grep "has a good GPG signature" pulloutput ' test_expect_success GPG 'pull signed commit with --verify-signatures' ' test_when_finished "git reset --hard && git checkout initial" && git pull --verify-signatures signed >pulloutput &&- test_i18ngrep "has a good GPG signature" pulloutput+ test_grep "has a good GPG signature" pulloutput ' test_expect_success GPG 'pull commit with bad signature without verification' '@@ -106,7 +106,7 @@ test_expect_success GPG 'pull unsigned commit into unborn branch' ' git init empty-repo && test_must_fail \ git -C empty-repo pull --verify-signatures .. 2>pullerror &&- test_i18ngrep "does not have a GPG signature" pullerror+ test_grep "does not have a GPG signature" pullerror ' test_expect_success GPG 'pull commit into unborn branch with bad signature and --verify-signatures' '@@ -114,7 +114,7 @@ test_expect_success GPG 'pull commit into unborn branch with bad signature and - git init empty-repo && test_must_fail \ git -C empty-repo pull --ff-only --verify-signatures ../bad 2>pullerror &&- test_i18ngrep "has a bad GPG signature" pullerror+ test_grep "has a bad GPG signature" pullerror ' test_expect_success GPG 'pull commit into unborn branch with untrusted signature and --verify-signatures' '@@ -122,7 +122,7 @@ test_expect_success GPG 'pull commit into unborn branch with untrusted signature git init empty-repo && test_must_fail \ git -C empty-repo pull --ff-only --verify-signatures ../untrusted 2>pullerror &&- test_i18ngrep "has an untrusted GPG signature" pullerror+ test_grep "has an untrusted GPG signature" pullerror ' test_expect_success GPG 'pull commit into unborn branch with untrusted signature and --verify-signatures and minTrustLevel=ultimate' '@@ -131,7 +131,7 @@ test_expect_success GPG 'pull commit into unborn branch with untrusted signature test_config_global gpg.minTrustLevel ultimate && test_must_fail \ git -C empty-repo pull --ff-only --verify-signatures ../untrusted 2>pullerror &&- test_i18ngrep "has an untrusted GPG signature" pullerror+ test_grep "has an untrusted GPG signature" pullerror ' test_expect_success GPG 'pull commit into unborn branch with untrusted signature and --verify-signatures and minTrustLevel=marginal' '@@ -140,7 +140,7 @@ test_expect_success GPG 'pull commit into unborn branch with untrusted signature test_config_global gpg.minTrustLevel marginal && test_must_fail \ git -C empty-repo pull --ff-only --verify-signatures ../untrusted 2>pullerror &&- test_i18ngrep "has an untrusted GPG signature" pullerror+ test_grep "has an untrusted GPG signature" pullerror ' test_expect_success GPG 'pull commit into unborn branch with untrusted signature and --verify-signatures and minTrustLevel=undefined' '@@ -148,7 +148,7 @@ test_expect_success GPG 'pull commit into unborn branch with untrusted signature git init empty-repo && test_config_global gpg.minTrustLevel undefined && git -C empty-repo pull --ff-only --verify-signatures ../untrusted >pulloutput &&- test_i18ngrep "has a good GPG signature" pulloutput+ test_grep "has a good GPG signature" pulloutput ' test_done
index b7d5551262..47eae641f0 100755--- a/t/t5601-clone.sh+++ b/t/t5601-clone.sh@@ -630,7 +630,7 @@ test_expect_success 'clone on case-insensitive fs' ' test_expect_success CASE_INSENSITIVE_FS 'colliding file detection' ' grep X icasefs/warning && grep x icasefs/warning &&- test_i18ngrep "the following paths have collided" icasefs/warning+ test_grep "the following paths have collided" icasefs/warning ' test_expect_success 'clone with GIT_DEFAULT_HASH' '@@ -696,7 +696,7 @@ test_expect_success 'partial clone: warn if server does not support object filte git clone --filter=blob:limit=0 "file://$(pwd)/server" client 2> err &&- test_i18ngrep "filtering not recognized by server" err+ test_grep "filtering not recognized by server" err ' test_expect_success 'batch missing blob request during checkout' '@@ -767,7 +767,7 @@ test_expect_success 'reject cloning shallow repository using HTTP' ' test_when_finished "rm -rf repo" && git clone --bare --no-local --depth=1 src "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" && test_must_fail git -c protocol.version=2 clone --reject-shallow $HTTPD_URL/smart/repo.git repo 2>err &&- test_i18ngrep -e "source repository is shallow, reject to clone." err &&+ test_grep -e "source repository is shallow, reject to clone." err && git clone --no-reject-shallow $HTTPD_URL/smart/repo.git repo '
t/t5604-clone-reference.sh
+1-1
index 9845fc04d5..9b32db8478 100755--- a/t/t5604-clone-reference.sh+++ b/t/t5604-clone-reference.sh@@ -317,7 +317,7 @@ test_expect_success SYMLINKS 'clone repo with symlinked or unknown files at obje for option in --local --no-hardlinks --dissociate do test_must_fail git clone $option T T$option 2>err || return 1 &&- test_i18ngrep "symlink.*exists" err || return 1+ test_grep "symlink.*exists" err || return 1 done && # But `--shared` clones should still work, even when specifying
t/t5606-clone-options.sh
+5-5
index 5890319b97..fc4bbd9daf 100755--- a/t/t5606-clone-options.sh+++ b/t/t5606-clone-options.sh@@ -39,7 +39,7 @@ test_expect_success 'clone -o' ' test_expect_success 'rejects invalid -o/--origin' ' test_must_fail git clone -o "bad...name" parent clone-bad-name 2>err &&- test_i18ngrep "'\''bad...name'\'' is not a valid remote name" err+ test_grep "'\''bad...name'\'' is not a valid remote name" err '@@ -56,7 +56,7 @@ test_expect_success 'disallows --bare with --separate-git-dir' ' test_must_fail git clone --bare --separate-git-dir dot-git-destiation parent clone-bare-sgd 2>err && test_debug "cat err" &&- test_i18ngrep -e "options .--bare. and .--separate-git-dir. cannot be used together" err+ test_grep -e "options .--bare. and .--separate-git-dir. cannot be used together" err '@@ -71,7 +71,7 @@ test_expect_success 'disallows --bundle-uri with shallow options' ' test_expect_success 'reject cloning shallow repository' ' test_when_finished "rm -rf repo" && test_must_fail git clone --reject-shallow shallow-repo out 2>err &&- test_i18ngrep -e "source repository is shallow, reject to clone." err &&+ test_grep -e "source repository is shallow, reject to clone." err && git clone --no-reject-shallow shallow-repo repo '@@ -79,7 +79,7 @@ test_expect_success 'reject cloning shallow repository' ' test_expect_success 'reject cloning non-local shallow repository' ' test_when_finished "rm -rf repo" && test_must_fail git clone --reject-shallow --no-local shallow-repo out 2>err &&- test_i18ngrep -e "source repository is shallow, reject to clone." err &&+ test_grep -e "source repository is shallow, reject to clone." err && git clone --no-reject-shallow --no-local shallow-repo repo '@@ -149,7 +149,7 @@ test_expect_success 'redirected clone does not show progress' ' git clone "file://$(pwd)/parent" clone-redirected >out 2>err && ! grep % err &&- test_i18ngrep ! "Checking connectivity" err+ test_grep ! "Checking connectivity" err '
t/t5607-clone-bundle.sh
+2-2
index 51705aa86a..0d1e92d996 100755--- a/t/t5607-clone-bundle.sh+++ b/t/t5607-clone-bundle.sh@@ -24,7 +24,7 @@ test_expect_success 'setup' ' test_expect_success '"verify" needs a worktree' ' git bundle create tip.bundle -1 main && nongit test_must_fail git bundle verify ../tip.bundle 2>err &&- test_i18ngrep "need a repository" err+ test_grep "need a repository" err ' test_expect_success 'annotated tags can be excluded by rev-list options' '@@ -166,7 +166,7 @@ test_expect_success 'git bundle v3 rejects unknown capabilities' ' @unknown=silly EOF test_must_fail git bundle verify new 2>output &&- test_i18ngrep "unknown capability .unknown=silly." output+ test_grep "unknown capability .unknown=silly." output ' test_done
t/t5611-clone-config.sh
+2-2
index 727caff443..298d4befab 100755--- a/t/t5611-clone-config.sh+++ b/t/t5611-clone-config.sh@@ -103,7 +103,7 @@ test_expect_success 'set up shallow repository' ' test_expect_success 'clone.rejectshallow=true should reject cloning shallow repo' ' test_when_finished "rm -rf out" && test_must_fail git -c clone.rejectshallow=true clone --no-local shallow-repo out 2>err &&- test_i18ngrep -e "source repository is shallow, reject to clone." err &&+ test_grep -e "source repository is shallow, reject to clone." err && git -c clone.rejectshallow=false clone --no-local shallow-repo out '@@ -111,7 +111,7 @@ test_expect_success 'clone.rejectshallow=true should reject cloning shallow repo test_expect_success 'option --[no-]reject-shallow override clone.rejectshallow config' ' test_when_finished "rm -rf out" && test_must_fail git -c clone.rejectshallow=false clone --reject-shallow --no-local shallow-repo out 2>err &&- test_i18ngrep -e "source repository is shallow, reject to clone." err &&+ test_grep -e "source repository is shallow, reject to clone." err && git -c clone.rejectshallow=true clone --no-reject-shallow --no-local shallow-repo out '
t/t5616-partial-clone.sh
+11-11
index 8759fc2853..2da7291e37 100755--- a/t/t5616-partial-clone.sh+++ b/t/t5616-partial-clone.sh@@ -353,14 +353,14 @@ test_expect_success 'upload-pack complains of bogus filter config' ' test_must_fail git \ -c uploadpackfilter.tree.maxdepth \ upload-pack . >/dev/null 2>err &&- test_i18ngrep "unable to parse.*tree.maxdepth" err+ test_grep "unable to parse.*tree.maxdepth" err ' test_expect_success 'upload-pack fails banned object filters' ' test_config -C srv.bare uploadpackfilter.blob:none.allow false && test_must_fail ok=sigpipe git clone --no-checkout --filter=blob:none \ "file://$(pwd)/srv.bare" pc3 2>err &&- test_i18ngrep "filter '\''blob:none'\'' not supported" err+ test_grep "filter '\''blob:none'\'' not supported" err ' test_expect_success 'upload-pack fails banned combine object filters' '@@ -370,14 +370,14 @@ test_expect_success 'upload-pack fails banned combine object filters' ' test_config -C srv.bare uploadpackfilter.blob:none.allow false && test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:1 \ --filter=blob:none "file://$(pwd)/srv.bare" pc3 2>err &&- test_i18ngrep "filter '\''blob:none'\'' not supported" err+ test_grep "filter '\''blob:none'\'' not supported" err ' test_expect_success 'upload-pack fails banned object filters with fallback' ' test_config -C srv.bare uploadpackfilter.allow false && test_must_fail ok=sigpipe git clone --no-checkout --filter=blob:none \ "file://$(pwd)/srv.bare" pc3 2>err &&- test_i18ngrep "filter '\''blob:none'\'' not supported" err+ test_grep "filter '\''blob:none'\'' not supported" err ' test_expect_success 'upload-pack limits tree depth filters' '@@ -386,7 +386,7 @@ test_expect_success 'upload-pack limits tree depth filters' ' test_config -C srv.bare uploadpackfilter.tree.maxDepth 0 && test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:1 \ "file://$(pwd)/srv.bare" pc3 2>err &&- test_i18ngrep "tree filter allows max depth 0, but got 1" err &&+ test_grep "tree filter allows max depth 0, but got 1" err && git clone --no-checkout --filter=tree:0 "file://$(pwd)/srv.bare" pc4 &&@@ -394,7 +394,7 @@ test_expect_success 'upload-pack limits tree depth filters' ' git clone --no-checkout --filter=tree:5 "file://$(pwd)/srv.bare" pc5 && test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:6 \ "file://$(pwd)/srv.bare" pc6 2>err &&- test_i18ngrep "tree filter allows max depth 5, but got 6" err+ test_grep "tree filter allows max depth 5, but got 6" err ' test_expect_success 'partial clone fetches blobs pointed to by refs even if normally filtered out' '@@ -459,11 +459,11 @@ test_expect_success 'partial clone with unresolvable sparse filter fails cleanly test_must_fail git clone --no-local --bare \ --filter=sparse:oid=main:no-such-name \ sparse-src dst.git 2>err &&- test_i18ngrep "unable to access sparse blob in .main:no-such-name" err &&+ test_grep "unable to access sparse blob in .main:no-such-name" err && test_must_fail git clone --no-local --bare \ --filter=sparse:oid=main \ sparse-src dst.git 2>err &&- test_i18ngrep "unable to parse sparse filter data in" err+ test_grep "unable to parse sparse filter data in" err ' setup_triangle () {@@ -493,8 +493,8 @@ setup_triangle () { TREE_HASH=$(git -C server rev-parse HEAD~1^{tree}) && git -C promisor-remote fetch --keep "file://$(pwd)/server" "$TREE_HASH" && git -C promisor-remote count-objects -v >object-count &&- test_i18ngrep "count: 0" object-count &&- test_i18ngrep "in-pack: 2" object-count &&+ test_grep "count: 0" object-count &&+ test_grep "in-pack: 2" object-count && # Set it as the promisor remote of client. Thus, whenever # the client lazy fetches, the lazy fetch will succeed only if it is@@ -748,7 +748,7 @@ test_expect_success 'upon cloning, check that all refs point to objects' ' test_must_fail git -c protocol.version=2 clone \ --filter=blob:none $HTTPD_URL/one_time_perl/server repo 2>err &&- test_i18ngrep "did not send all necessary objects" err &&+ test_grep "did not send all necessary objects" err && # Ensure that the one-time-perl script was used. ! test -e "$HTTPD_ROOT_PATH/one-time-perl"
index 6af5c2062f..3c0c6047d5 100755--- a/t/t5702-protocol-v2.sh+++ b/t/t5702-protocol-v2.sh@@ -189,8 +189,8 @@ test_expect_success 'warn if using server-option with ls-remote with legacy prot test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 git -c protocol.version=0 \ ls-remote -o hello -o world "file://$(pwd)/file_parent" main 2>err &&- test_i18ngrep "see protocol.version in" err &&- test_i18ngrep "server options require protocol version 2 or later" err+ test_grep "see protocol.version in" err &&+ test_grep "server options require protocol version 2 or later" err ' test_expect_success 'clone with file:// using protocol v2' '@@ -377,8 +377,8 @@ test_expect_success 'warn if using server-option with fetch with legacy protocol test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 git -C temp_child -c protocol.version=0 \ fetch -o hello -o world "file://$(pwd)/file_parent" main 2>err &&- test_i18ngrep "see protocol.version in" err &&- test_i18ngrep "server options require protocol version 2 or later" err+ test_grep "see protocol.version in" err &&+ test_grep "server options require protocol version 2 or later" err ' test_expect_success 'server-options are sent when cloning' '@@ -399,8 +399,8 @@ test_expect_success 'warn if using server-option with clone with legacy protocol clone --server-option=hello --server-option=world \ "file://$(pwd)/file_parent" myclone 2>err &&- test_i18ngrep "see protocol.version in" err &&- test_i18ngrep "server options require protocol version 2 or later" err+ test_grep "see protocol.version in" err &&+ test_grep "server options require protocol version 2 or later" err ' test_expect_success 'upload-pack respects config using protocol v2' '@@ -495,7 +495,7 @@ test_expect_success 'partial clone warns if filter is not advertised' ' git -C server config uploadpack.allowfilter 0 && git -c protocol.version=2 \ clone --filter=blob:none "file://$(pwd)/server" client 2>err &&- test_i18ngrep "filtering not recognized by server, ignoring" err+ test_grep "filtering not recognized by server, ignoring" err ' test_expect_success 'even with handcrafted request, filter does not work if not advertised' '@@ -736,7 +736,7 @@ test_expect_success 'file:// --negotiate-only with protocol v0' ' --negotiate-only \ --negotiation-tip=$(git -C client rev-parse HEAD) \ origin 2>err &&- test_i18ngrep "negotiate-only requires protocol v2" err+ test_grep "negotiate-only requires protocol v2" err ' test_expect_success 'push with custom path does not request v2' '@@ -809,7 +809,7 @@ test_expect_success 'clone repository with http:// using protocol v2 with incomp # Server responded using protocol v2 grep "git< version 2" log && # Client reported appropriate failure- test_i18ngrep "bytes of length header were received" err+ test_grep "bytes of length header were received" err ' test_expect_success 'clone repository with http:// using protocol v2 with incomplete pktline body' '@@ -826,7 +826,7 @@ test_expect_success 'clone repository with http:// using protocol v2 with incomp # Server responded using protocol v2 grep "git< version 2" log && # Client reported appropriate failure- test_i18ngrep "bytes of body are still expected" err+ test_grep "bytes of body are still expected" err ' test_expect_success 'clone with http:// using protocol v2 and invalid parameters' '@@ -973,7 +973,7 @@ test_expect_success 'when server sends "ready", expect DELIM' ' test_must_fail git -C http_child -c protocol.version=2 \ fetch "$HTTPD_URL/one_time_perl/http_parent" 2> err &&- test_i18ngrep "expected packfile to be sent after .ready." err+ test_grep "expected packfile to be sent after .ready." err ' test_expect_success 'when server does not send "ready", expect FLUSH' '@@ -1001,7 +1001,7 @@ test_expect_success 'when server does not send "ready", expect FLUSH' ' fetch "$HTTPD_URL/one_time_perl/http_parent" 2> err && grep "fetch< .*acknowledgments" log && ! grep "fetch< .*ready" log &&- test_i18ngrep "expected no other sections to be sent after no .ready." err+ test_grep "expected no other sections to be sent after no .ready." err ' configure_exclusion () {@@ -1111,7 +1111,7 @@ test_expect_success 'fetching with valid packfile URI but invalid hash fails' ' git -c protocol.version=2 \ -c fetch.uriprotocols=http,https \ clone "$HTTPD_URL/smart/http_parent" http_child 2>err &&- test_i18ngrep "pack downloaded from.*does not match expected hash" err+ test_grep "pack downloaded from.*does not match expected hash" err ' test_expect_success 'packfile-uri with transfer.fsckobjects' '@@ -1165,7 +1165,7 @@ test_expect_success 'packfile-uri with transfer.fsckobjects fails on bad object' test_must_fail git -c protocol.version=2 -c transfer.fsckobjects=1 \ -c fetch.uriprotocols=http,https \ clone "$HTTPD_URL/smart/http_parent" http_child 2>error &&- test_i18ngrep "invalid author/committer line - missing email" error+ test_grep "invalid author/committer line - missing email" error ' test_expect_success 'packfile-uri with transfer.fsckobjects succeeds when .gitmodules is separate from tree' '@@ -1213,7 +1213,7 @@ test_expect_success 'packfile-uri with transfer.fsckobjects fails when .gitmodul test_must_fail git -c protocol.version=2 -c transfer.fsckobjects=1 \ -c fetch.uriprotocols=http,https \ clone "$HTTPD_URL/smart/http_parent" http_child 2>err &&- test_i18ngrep "disallowed submodule name" err+ test_grep "disallowed submodule name" err ' test_expect_success 'packfile-uri path redacted in trace' '@@ -1296,7 +1296,7 @@ test_expect_success 'http:// --negotiate-only without wait-for-done support' ' --negotiate-only \ --negotiation-tip=$(git -C client rev-parse HEAD) \ origin 2>err &&- test_i18ngrep "server does not support wait-for-done" err+ test_grep "server does not support wait-for-done" err ' test_expect_success 'http:// --negotiate-only with protocol v0' '@@ -1310,7 +1310,7 @@ test_expect_success 'http:// --negotiate-only with protocol v0' ' --negotiate-only \ --negotiation-tip=$(git -C client rev-parse HEAD) \ origin 2>err &&- test_i18ngrep "negotiate-only requires protocol v2" err+ test_grep "negotiate-only requires protocol v2" err ' # DO NOT add non-httpd-specific tests here, because the last part of this
t/t5703-upload-pack-ref-in-want.sh
+2-2
index df74f80061..191097171b 100755--- a/t/t5703-upload-pack-ref-in-want.sh+++ b/t/t5703-upload-pack-ref-in-want.sh@@ -484,7 +484,7 @@ test_expect_success 'server is initially ahead - no ref in want' ' cp -r "$LOCAL_PRISTINE" local && inconsistency main $(test_oid numeric) && test_must_fail git -C local fetch 2>err &&- test_i18ngrep "fatal: remote error: upload-pack: not our ref" err+ test_grep "fatal: remote error: upload-pack: not our ref" err ' test_expect_success 'server is initially ahead - ref in want' '@@ -530,7 +530,7 @@ test_expect_success 'server loses a ref - ref in want' ' echo "s/main/rain/" >"$HTTPD_ROOT_PATH/one-time-perl" && test_must_fail git -C local fetch 2>err &&- test_i18ngrep "fatal: remote error: unknown ref refs/heads/rain" err+ test_grep "fatal: remote error: unknown ref refs/heads/rain" err ' # DO NOT add non-httpd-specific tests here, because the last part of this
index d386076dbd..4e0a77f985 100755--- a/t/t5801-remote-helpers.sh+++ b/t/t5801-remote-helpers.sh@@ -137,7 +137,7 @@ test_expect_success 'forced push' ' test_expect_success 'cloning without refspec' ' GIT_REMOTE_TESTGIT_NOREFSPEC=1 \ git clone "testgit::${PWD}/server" local2 2>error &&- test_i18ngrep "this remote helper should implement refspec capability" error &&+ test_grep "this remote helper should implement refspec capability" error && compare_refs local2 HEAD server HEAD '@@ -145,7 +145,7 @@ test_expect_success 'pulling without refspecs' ' (cd local2 && git reset --hard && GIT_REMOTE_TESTGIT_NOREFSPEC=1 git pull 2>../error) &&- test_i18ngrep "this remote helper should implement refspec capability" error &&+ test_grep "this remote helper should implement refspec capability" error && compare_refs local2 HEAD server HEAD '@@ -157,7 +157,7 @@ test_expect_success 'pushing without refspecs' ' GIT_REMOTE_TESTGIT_NOREFSPEC=1 && export GIT_REMOTE_TESTGIT_NOREFSPEC && test_must_fail git push 2>../error) &&- test_i18ngrep "remote-helper doesn.t support push; refspec needed" error+ test_grep "remote-helper doesn.t support push; refspec needed" error ' test_expect_success 'pulling without marks' '@@ -256,7 +256,7 @@ clean_mark () { test_expect_success 'proper failure checks for fetching' ' (cd local && test_must_fail env GIT_REMOTE_TESTGIT_FAILURE=1 git fetch 2>error &&- test_i18ngrep -q "error while running fast-import" error+ test_grep -q "error while running fast-import" error ) '
t/t5812-proto-disable-http.sh
+1-1
index d8da5f58d1..769c717e88 100755--- a/t/t5812-proto-disable-http.sh+++ b/t/t5812-proto-disable-http.sh@@ -20,7 +20,7 @@ test_expect_success 'http(s) transport respects GIT_ALLOW_PROTOCOL' ' test_must_fail env GIT_ALLOW_PROTOCOL=http:https \ GIT_SMART_HTTP=0 \ git clone "$HTTPD_URL/ftp-redir/repo.git" 2>stderr &&- test_i18ngrep -E "(ftp.*disabled|your curl version is too old)" stderr+ test_grep -E "(ftp.*disabled|your curl version is too old)" stderr ' test_expect_success 'curl limits redirects' '
t/t6001-rev-list-graft.sh
+2-2
index 16635ecc33..73a2465aa0 100755--- a/t/t6001-rev-list-graft.sh+++ b/t/t6001-rev-list-graft.sh@@ -118,10 +118,10 @@ done test_expect_success 'show advice that grafts are deprecated' ' git show HEAD 2>err &&- test_i18ngrep "git replace" err &&+ test_grep "git replace" err && test_config advice.graftFileDeprecated false && git show HEAD 2>err &&- test_i18ngrep ! "git replace" err+ test_grep ! "git replace" err ' test_done
t/t6021-rev-list-exclude-hidden.sh
+2-2
index 1a9d37e638..cdf7aa9427 100755--- a/t/t6021-rev-list-exclude-hidden.sh+++ b/t/t6021-rev-list-exclude-hidden.sh@@ -151,12 +151,12 @@ do do test_expect_success "$section: fails with --$pseudoopt" ' test_must_fail git rev-list --exclude-hidden=$section --$pseudoopt 2>err &&- test_i18ngrep "error: --exclude-hidden cannot be used together with --$pseudoopt" err+ test_grep "error: --exclude-hidden cannot be used together with --$pseudoopt" err ' test_expect_success "$section: fails with --$pseudoopt=pattern" ' test_must_fail git rev-list --exclude-hidden=$section --$pseudoopt=pattern 2>err &&- test_i18ngrep "error: --exclude-hidden cannot be used together with --$pseudoopt" err+ test_grep "error: --exclude-hidden cannot be used together with --$pseudoopt" err ' done done
t/t6030-bisect-porcelain.sh
+12-12
index fb01bd6abc..2a5b7d8379 100755--- a/t/t6030-bisect-porcelain.sh+++ b/t/t6030-bisect-porcelain.sh@@ -220,7 +220,7 @@ test_expect_success 'bisect start: existing ".git/BISECT_START" not modified if cp .git/BISECT_START saved && test_must_fail git bisect start $HASH4 foo -- && git branch > branch.output &&- test_i18ngrep "* (no branch, bisect started on other)" branch.output > /dev/null &&+ test_grep "* (no branch, bisect started on other)" branch.output > /dev/null && test_cmp saved .git/BISECT_START ' test_expect_success 'bisect start: no ".git/BISECT_START" if mistaken rev' '@@ -588,7 +588,7 @@ test_expect_success 'bisect starting with a detached HEAD' ' test_expect_success 'bisect errors out if bad and good are mistaken' ' git bisect reset && test_must_fail git bisect start $HASH2 $HASH4 2> rev_list_error &&- test_i18ngrep "mistook good and bad" rev_list_error &&+ test_grep "mistook good and bad" rev_list_error && git bisect reset '@@ -630,7 +630,7 @@ test_expect_success 'side branch creation' ' test_expect_success 'good merge base when good and bad are siblings' ' git bisect start "$HASH7" "$SIDE_HASH7" > my_bisect_log.txt &&- test_i18ngrep "merge base must be tested" my_bisect_log.txt &&+ test_grep "merge base must be tested" my_bisect_log.txt && grep $HASH4 my_bisect_log.txt && git bisect good > my_bisect_log.txt && ! grep "merge base must be tested" my_bisect_log.txt &&@@ -639,7 +639,7 @@ test_expect_success 'good merge base when good and bad are siblings' ' ' test_expect_success 'skipped merge base when good and bad are siblings' ' git bisect start "$SIDE_HASH7" "$HASH7" > my_bisect_log.txt &&- test_i18ngrep "merge base must be tested" my_bisect_log.txt &&+ test_grep "merge base must be tested" my_bisect_log.txt && grep $HASH4 my_bisect_log.txt && git bisect skip > my_bisect_log.txt 2>&1 && grep "warning" my_bisect_log.txt &&@@ -649,11 +649,11 @@ test_expect_success 'skipped merge base when good and bad are siblings' ' test_expect_success 'bad merge base when good and bad are siblings' ' git bisect start "$HASH7" HEAD > my_bisect_log.txt &&- test_i18ngrep "merge base must be tested" my_bisect_log.txt &&+ test_grep "merge base must be tested" my_bisect_log.txt && grep $HASH4 my_bisect_log.txt && test_must_fail git bisect bad > my_bisect_log.txt 2>&1 &&- test_i18ngrep "merge base $HASH4 is bad" my_bisect_log.txt &&- test_i18ngrep "fixed between $HASH4 and \[$SIDE_HASH7\]" my_bisect_log.txt &&+ test_grep "merge base $HASH4 is bad" my_bisect_log.txt &&+ test_grep "fixed between $HASH4 and \[$SIDE_HASH7\]" my_bisect_log.txt && git bisect reset '@@ -704,9 +704,9 @@ test_expect_success '"git bisect run --first-parent" simple case' ' test_expect_success 'good merge bases when good and bad are siblings' ' git bisect start "$B_HASH" "$A_HASH" > my_bisect_log.txt &&- test_i18ngrep "merge base must be tested" my_bisect_log.txt &&+ test_grep "merge base must be tested" my_bisect_log.txt && git bisect good > my_bisect_log2.txt &&- test_i18ngrep "merge base must be tested" my_bisect_log2.txt &&+ test_grep "merge base must be tested" my_bisect_log2.txt && { { grep "$SIDE_HASH5" my_bisect_log.txt &&@@ -721,14 +721,14 @@ test_expect_success 'good merge bases when good and bad are siblings' ' test_expect_success 'optimized merge base checks' ' git bisect start "$HASH7" "$SIDE_HASH7" > my_bisect_log.txt &&- test_i18ngrep "merge base must be tested" my_bisect_log.txt &&+ test_grep "merge base must be tested" my_bisect_log.txt && grep "$HASH4" my_bisect_log.txt && git bisect good > my_bisect_log2.txt && test -f ".git/BISECT_ANCESTORS_OK" && test "$HASH6" = $(git rev-parse --verify HEAD) && git bisect bad && git bisect good "$A_HASH" > my_bisect_log4.txt &&- test_i18ngrep "merge base must be tested" my_bisect_log4.txt &&+ test_grep "merge base must be tested" my_bisect_log4.txt && test_path_is_missing ".git/BISECT_ANCESTORS_OK" '@@ -806,7 +806,7 @@ test_expect_success 'skipping away from skipped commit' ' test_expect_success 'erroring out when using bad path arguments' ' test_must_fail git bisect start $PARA_HASH7 $HASH1 -- foobar 2> error.txt &&- test_i18ngrep "bad path arguments" error.txt+ test_grep "bad path arguments" error.txt ' test_expect_success 'test bisection on bare repo - --no-checkout specified' '
t/t6040-tracking-info.sh
+9-9
index 7ddbd96e58..acc281c116 100755--- a/t/t6040-tracking-info.sh+++ b/t/t6040-tracking-info.sh@@ -83,13 +83,13 @@ test_expect_success 'checkout (diverged from upstream)' ' ( cd test && git checkout b1 ) >actual &&- test_i18ngrep "have 1 and 1 different" actual+ test_grep "have 1 and 1 different" actual ' test_expect_success 'checkout with local tracked branch' ' git checkout main && git checkout follower >actual &&- test_i18ngrep "is ahead of" actual+ test_grep "is ahead of" actual ' test_expect_success 'checkout (upstream is gone)' '@@ -97,14 +97,14 @@ test_expect_success 'checkout (upstream is gone)' ' cd test && git checkout b5 ) >actual &&- test_i18ngrep "is based on .*, but the upstream is gone." actual+ test_grep "is based on .*, but the upstream is gone." actual ' test_expect_success 'checkout (up-to-date with upstream)' ' ( cd test && git checkout b6 ) >actual &&- test_i18ngrep "Your branch is up to date with .origin/main" actual+ test_grep "Your branch is up to date with .origin/main" actual ' test_expect_success 'status (diverged from upstream)' '@@ -114,7 +114,7 @@ test_expect_success 'status (diverged from upstream)' ' # reports nothing to commit test_must_fail git commit --dry-run ) >actual &&- test_i18ngrep "have 1 and 1 different" actual+ test_grep "have 1 and 1 different" actual ' test_expect_success 'status (upstream is gone)' '@@ -124,7 +124,7 @@ test_expect_success 'status (upstream is gone)' ' # reports nothing to commit test_must_fail git commit --dry-run ) >actual &&- test_i18ngrep "is based on .*, but the upstream is gone." actual+ test_grep "is based on .*, but the upstream is gone." actual ' test_expect_success 'status (up-to-date with upstream)' '@@ -134,7 +134,7 @@ test_expect_success 'status (up-to-date with upstream)' ' # reports nothing to commit test_must_fail git commit --dry-run ) >actual &&- test_i18ngrep "Your branch is up to date with .origin/main" actual+ test_grep "Your branch is up to date with .origin/main" actual ' cat >expect <<\EOF@@ -253,7 +253,7 @@ test_expect_success 'fail to track lightweight tags' ' git checkout main && git tag light && test_must_fail git branch --track lighttrack light >actual &&- test_i18ngrep ! "set up to track" actual &&+ test_grep ! "set up to track" actual && test_must_fail git checkout lighttrack '@@ -261,7 +261,7 @@ test_expect_success 'fail to track annotated tags' ' git checkout main && git tag -m heavy heavy && test_must_fail git branch --track heavytrack heavy >actual &&- test_i18ngrep ! "set up to track" actual &&+ test_grep ! "set up to track" actual && test_must_fail git checkout heavytrack '
index 8d9d6604f0..52822b9461 100755--- a/t/t6112-rev-list-filters-objects.sh+++ b/t/t6112-rev-list-filters-objects.sh@@ -457,7 +457,7 @@ expect_invalid_filter_spec () { test_must_fail git -C r3 rev-list --objects --filter="$spec" HEAD \ >actual 2>actual_stderr && test_must_be_empty actual &&- test_i18ngrep "$err" actual_stderr+ test_grep "$err" actual_stderr } test_expect_success 'combine:... while URL-encoding things that should not be' '
t/t6120-describe.sh
+1-1
index 0a5c487540..e78315d23d 100755--- a/t/t6120-describe.sh+++ b/t/t6120-describe.sh@@ -392,7 +392,7 @@ test_expect_success 'describe directly tagged blob' ' test_expect_success 'describe tag object' ' git tag test-blob-1 -a -m msg unique-file:file && test_must_fail git describe test-blob-1 2>actual &&- test_i18ngrep "fatal: test-blob-1 is neither a commit nor blob" actual+ test_grep "fatal: test-blob-1 is neither a commit nor blob" actual ' test_expect_success ULIMIT_STACK_SIZE 'name-rev works in a deep repo' '
t/t6134-pathspec-in-submodule.sh
+1-1
index 3214d9db97..16ce4cfcc6 100755--- a/t/t6134-pathspec-in-submodule.sh+++ b/t/t6134-pathspec-in-submodule.sh@@ -27,7 +27,7 @@ test_expect_success 'error message for path inside submodule' ' test_expect_success 'error message for path inside submodule from within submodule' ' test_must_fail git -C sub add . 2>actual &&- test_i18ngrep "in unpopulated submodule" actual+ test_grep "in unpopulated submodule" actual ' test_done
t/t6135-pathspec-with-attrs.sh
+4-4
index f70c395e75..a9c1e4e0ec 100755--- a/t/t6135-pathspec-with-attrs.sh+++ b/t/t6135-pathspec-with-attrs.sh@@ -236,7 +236,7 @@ test_expect_success 'check label excluding other labels' ' test_expect_success 'fail on multiple attr specifiers in one pathspec item' ' test_must_fail git ls-files . ":(attr:labelB,attr:labelC)" 2>actual &&- test_i18ngrep "Only one" actual+ test_grep "Only one" actual ' test_expect_success 'fail if attr magic is used places not implemented' '@@ -246,7 +246,7 @@ test_expect_success 'fail if attr magic is used places not implemented' ' # though, but git-add is convenient as it has its own internal pathspec # parsing. test_must_fail git add ":(attr:labelB)" 2>actual &&- test_i18ngrep "magic not supported" actual+ test_grep "magic not supported" actual ' test_expect_success 'abort on giving invalid label on the command line' '@@ -269,12 +269,12 @@ test_expect_success 'check attribute list' ' test_expect_success 'backslash cannot be the last character' ' test_must_fail git ls-files ":(attr:label=foo\\ labelA=bar)" 2>actual &&- test_i18ngrep "not allowed as last character in attr value" actual+ test_grep "not allowed as last character in attr value" actual ' test_expect_success 'backslash cannot be used as a value' ' test_must_fail git ls-files ":(attr:label=f\\\oo)" 2>actual &&- test_i18ngrep "for value matching" actual+ test_grep "for value matching" actual ' test_expect_success 'reading from .gitattributes in a subdirectory (1)' '
t/t6136-pathspec-in-bare.sh
+4-4
index ae8b5379e2..2db37a6596 100755--- a/t/t6136-pathspec-in-bare.sh+++ b/t/t6136-pathspec-in-bare.sh@@ -15,11 +15,11 @@ test_expect_success 'log and ls-files in a bare repository' ' cd bare && test_must_fail git log -- .. >out 2>err && test_must_be_empty out &&- test_i18ngrep "outside repository" err &&+ test_grep "outside repository" err && test_must_fail git ls-files -- .. >out 2>err && test_must_be_empty out &&- test_i18ngrep "outside repository" err+ test_grep "outside repository" err ) '@@ -28,11 +28,11 @@ test_expect_success 'log and ls-files in .git directory' ' cd .git && test_must_fail git log -- .. >out 2>err && test_must_be_empty out &&- test_i18ngrep "outside repository" err &&+ test_grep "outside repository" err && test_must_fail git ls-files -- .. >out 2>err && test_must_be_empty out &&- test_i18ngrep "outside repository" err+ test_grep "outside repository" err ) '
t/t6402-merge-rename.sh
+8-8
index 772238e582..2738b50c2a 100755--- a/t/t6402-merge-rename.sh+++ b/t/t6402-merge-rename.sh@@ -311,13 +311,13 @@ test_expect_success 'Rename+D/F conflict; renamed file merges but dir in way' ' git checkout -q renamed-file-has-no-conflicts^0 && test_must_fail git merge --strategy=recursive dir-in-way >output &&- test_i18ngrep "CONFLICT (modify/delete): dir/file-in-the-way" output &&- test_i18ngrep "Auto-merging dir" output &&+ test_grep "CONFLICT (modify/delete): dir/file-in-the-way" output &&+ test_grep "Auto-merging dir" output && if test "$GIT_TEST_MERGE_ALGORITHM" = ort then- test_i18ngrep "moving it to dir~HEAD instead" output+ test_grep "moving it to dir~HEAD instead" output else- test_i18ngrep "Adding as dir~HEAD instead" output+ test_grep "Adding as dir~HEAD instead" output fi && test_stdout_line_count = 3 git ls-files -u &&@@ -338,13 +338,13 @@ test_expect_success 'Same as previous, but merged other way' ' test_must_fail git merge --strategy=recursive renamed-file-has-no-conflicts >output 2>errors && ! grep "error: refusing to lose untracked file at" errors &&- test_i18ngrep "CONFLICT (modify/delete): dir/file-in-the-way" output &&- test_i18ngrep "Auto-merging dir" output &&+ test_grep "CONFLICT (modify/delete): dir/file-in-the-way" output &&+ test_grep "Auto-merging dir" output && if test "$GIT_TEST_MERGE_ALGORITHM" = ort then- test_i18ngrep "moving it to dir~renamed-file-has-no-conflicts instead" output+ test_grep "moving it to dir~renamed-file-has-no-conflicts instead" output else- test_i18ngrep "Adding as dir~renamed-file-has-no-conflicts instead" output+ test_grep "Adding as dir~renamed-file-has-no-conflicts instead" output fi && test_stdout_line_count = 3 git ls-files -u &&
t/t6422-merge-rename-corner-cases.sh
+8-8
index 076b6a74d5..80d7b5eaba 100755--- a/t/t6422-merge-rename-corner-cases.sh+++ b/t/t6422-merge-rename-corner-cases.sh@@ -476,7 +476,7 @@ test_expect_success 'handle rename-with-content-merge vs. add' ' git checkout A^0 && test_must_fail git merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (.*/add)" out &&+ test_grep "CONFLICT (.*/add)" out && git ls-files -s >out && test_line_count = 2 out &&@@ -522,7 +522,7 @@ test_expect_success 'handle rename-with-content-merge vs. add, merge other way' git checkout B^0 && test_must_fail git merge -s recursive A^0 >out &&- test_i18ngrep "CONFLICT (.*/add)" out &&+ test_grep "CONFLICT (.*/add)" out && git ls-files -s >out && test_line_count = 2 out &&@@ -602,7 +602,7 @@ test_expect_success 'handle rename/rename (2to1) conflict correctly' ' git checkout B^0 && test_must_fail git merge -s recursive C^0 >out &&- test_i18ngrep "CONFLICT (\(.*\)/\1)" out &&+ test_grep "CONFLICT (\(.*\)/\1)" out && git ls-files -s >out && test_line_count = 2 out &&@@ -914,8 +914,8 @@ test_expect_merge_algorithm failure success 'rad-check: rename/add/delete confli # be flexible in the type of console output message(s) reported # for this particular case; we will be more stringent about the # contents of the index and working directory.- test_i18ngrep "CONFLICT (.*/add)" out &&- test_i18ngrep "CONFLICT (rename.*/delete)" out &&+ test_grep "CONFLICT (.*/add)" out &&+ test_grep "CONFLICT (rename.*/delete)" out && test_must_be_empty err && git ls-files -s >file_count &&@@ -988,8 +988,8 @@ test_expect_merge_algorithm failure success 'rrdd-check: rename/rename(2to1)/del # be flexible in the type of console output message(s) reported # for this particular case; we will be more stringent about the # contents of the index and working directory.- test_i18ngrep "CONFLICT (\(.*\)/\1)" out &&- test_i18ngrep "CONFLICT (rename.*delete)" out &&+ test_grep "CONFLICT (\(.*\)/\1)" out &&+ test_grep "CONFLICT (rename.*delete)" out && test_must_be_empty err && git ls-files -s >file_count &&@@ -1068,7 +1068,7 @@ test_expect_merge_algorithm failure success 'mod6-check: chains of rename/rename test_must_fail git merge -s recursive B^0 >out 2>err &&- test_i18ngrep "CONFLICT (rename/rename)" out &&+ test_grep "CONFLICT (rename/rename)" out && test_must_be_empty err && git ls-files -s >file_count &&
t/t6423-merge-rename-directories.sh
+70-70
index 944de75b80..88d1cf2cde 100755--- a/t/t6423-merge-rename-directories.sh+++ b/t/t6423-merge-rename-directories.sh@@ -276,7 +276,7 @@ test_expect_success '1d: Directory renames cause a rename/rename(2to1) conflict' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (\(.*\)/\1)" out &&+ test_grep "CONFLICT (\(.*\)/\1)" out && git ls-files -s >out && test_line_count = 8 out &&@@ -515,7 +515,7 @@ test_expect_success '2a: Directory split into two on one side, with equal number git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT.*directory rename split" out &&+ test_grep "CONFLICT.*directory rename split" out && git ls-files -s >out && test_line_count = 3 out &&@@ -591,7 +591,7 @@ test_expect_success '2b: Directory split into two on one side, with equal number git rev-parse >expect \ O:z/b O:z/c B:x/d && test_cmp expect actual &&- test_i18ngrep ! "CONFLICT.*directory rename split" out+ test_grep ! "CONFLICT.*directory rename split" out ) '@@ -726,8 +726,8 @@ test_expect_success '3b: Avoid implicit rename if involved as source on current git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep CONFLICT.*rename/rename.*z/d.*x/d.*w/d out &&- test_i18ngrep ! CONFLICT.*rename/rename.*y/d out &&+ test_grep CONFLICT.*rename/rename.*z/d.*x/d.*w/d out &&+ test_grep ! CONFLICT.*rename/rename.*y/d out && git ls-files -s >out && test_line_count = 5 out &&@@ -938,7 +938,7 @@ test_expect_success '5a: Merge directories, other side adds files to original an git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT.*implicit dir rename" out &&+ test_grep "CONFLICT.*implicit dir rename" out && git ls-files -s >out && test_line_count = 6 out &&@@ -1013,7 +1013,7 @@ test_expect_success '5b: Rename/delete in order to get add/add/add conflict' ' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (add/add).* y/d" out &&+ test_grep "CONFLICT (add/add).* y/d" out && git ls-files -s >out && test_line_count = 5 out &&@@ -1094,8 +1094,8 @@ test_expect_success '5c: Transitive rename would cause rename/rename/rename/add/ git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (rename/rename).*x/d.*w/d.*z/d" out &&- test_i18ngrep "CONFLICT (add/add).* y/d" out &&+ test_grep "CONFLICT (rename/rename).*x/d.*w/d.*z/d" out &&+ test_grep "CONFLICT (add/add).* y/d" out && git ls-files -s >out && test_line_count = 9 out &&@@ -1179,7 +1179,7 @@ test_expect_success '5d: Directory/file/file conflict due to directory rename' ' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (file/directory).*y/d" out &&+ test_grep "CONFLICT (file/directory).*y/d" out && git ls-files -s >out && test_line_count = 6 out &&@@ -1278,7 +1278,7 @@ test_expect_success '6a: Tricky rename/delete' ' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (rename/delete).*z/c.*y/c" out &&+ test_grep "CONFLICT (rename/delete).*z/c.*y/c" out && if test "$GIT_TEST_MERGE_ALGORITHM" = ort then@@ -1740,8 +1740,8 @@ test_expect_success '7a: rename-dir vs. rename-dir (NOT split evenly) PLUS add-o git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (rename/rename).*z/b.*y/b.*w/b" out &&- test_i18ngrep "CONFLICT (rename/rename).*z/c.*y/c.*x/c" out &&+ test_grep "CONFLICT (rename/rename).*z/b.*y/b.*w/b" out &&+ test_grep "CONFLICT (rename/rename).*z/c.*y/c.*x/c" out && git ls-files -s >out && test_line_count = 7 out &&@@ -1813,7 +1813,7 @@ test_expect_success '7b: rename/rename(2to1), but only due to transitive rename' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (\(.*\)/\1)" out &&+ test_grep "CONFLICT (\(.*\)/\1)" out && git ls-files -s >out && test_line_count = 4 out &&@@ -1900,7 +1900,7 @@ test_expect_success '7c: rename/rename(1to...2or3); transitive rename may add co git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (rename/rename).*x/d.*w/d.*y/d" out &&+ test_grep "CONFLICT (rename/rename).*x/d.*w/d.*y/d" out && git ls-files -s >out && test_line_count = 5 out &&@@ -1965,7 +1965,7 @@ test_expect_success '7d: transitive rename involved in rename/delete; how is it git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (rename/delete).*x/d.*y/d" out &&+ test_grep "CONFLICT (rename/delete).*x/d.*y/d" out && if test "$GIT_TEST_MERGE_ALGORITHM" = ort then@@ -2071,7 +2071,7 @@ test_expect_success '7e: transitive rename in rename/delete AND dirs in the way' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (rename/delete).*x/d.*y/d" out &&+ test_grep "CONFLICT (rename/delete).*x/d.*y/d" out && if test "$GIT_TEST_MERGE_ALGORITHM" = ort then@@ -2330,7 +2330,7 @@ test_expect_success '8c: modify/delete or rename+modify/delete' ' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "CONFLICT (modify/delete).* z/d" out &&+ test_grep "CONFLICT (modify/delete).* z/d" out && git ls-files -s >out && test_line_count = 5 out &&@@ -2491,8 +2491,8 @@ test_expect_success '8e: Both sides rename, one side adds to original directory' git checkout A^0 && test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&- test_i18ngrep CONFLICT.*rename/rename.*z/c.*y/c.*w/c out &&- test_i18ngrep CONFLICT.*rename/rename.*z/b.*y/b.*w/b out &&+ test_grep CONFLICT.*rename/rename.*z/c.*y/c.*w/c out &&+ test_grep CONFLICT.*rename/rename.*z/b.*y/b.*w/b out && git ls-files -s >out && test_line_count = 7 out &&@@ -2741,7 +2741,7 @@ test_expect_success '9c: Doubly transitive rename?' ' git checkout A^0 && git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "WARNING: Avoiding applying x -> z rename to x/f" out &&+ test_grep "WARNING: Avoiding applying x -> z rename to x/f" out && git ls-files -s >out && test_line_count = 6 out &&@@ -2830,10 +2830,10 @@ test_expect_success '9d: N-way transitive rename?' ' git checkout A^0 && git -c merge.directoryRenames=true merge -s recursive B^0 >out &&- test_i18ngrep "WARNING: Avoiding applying z -> y rename to z/t" out &&- test_i18ngrep "WARNING: Avoiding applying y -> x rename to y/a" out &&- test_i18ngrep "WARNING: Avoiding applying x -> w rename to x/b" out &&- test_i18ngrep "WARNING: Avoiding applying w -> v rename to w/c" out &&+ test_grep "WARNING: Avoiding applying z -> y rename to z/t" out &&+ test_grep "WARNING: Avoiding applying y -> x rename to y/a" out &&+ test_grep "WARNING: Avoiding applying x -> w rename to x/b" out &&+ test_grep "WARNING: Avoiding applying w -> v rename to w/c" out && git ls-files -s >out && test_line_count = 7 out &&@@ -3215,7 +3215,7 @@ test_expect_success '10a: Overwrite untracked with normal rename/delete' ' test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err && test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "The following untracked working tree files would be overwritten by merge" err &&+ test_grep "The following untracked working tree files would be overwritten by merge" err && git ls-files -s >out && test_line_count = 1 out &&@@ -3287,7 +3287,7 @@ test_expect_success '10b: Overwrite untracked with dir rename + delete' ' if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: The following untracked working tree files would be overwritten by merge" err &&+ test_grep "error: The following untracked working tree files would be overwritten by merge" err && git ls-files -s >out && test_line_count = 1 out &&@@ -3296,8 +3296,8 @@ test_expect_success '10b: Overwrite untracked with dir rename + delete' ' git ls-files -o >out && test_line_count = 5 out else- test_i18ngrep "CONFLICT (rename/delete).*Version B\^0 of y/d left in tree at y/d~B\^0" out &&- test_i18ngrep "Error: Refusing to lose untracked file at y/e; writing to y/e~B\^0 instead" out &&+ test_grep "CONFLICT (rename/delete).*Version B\^0 of y/d left in tree at y/d~B\^0" out &&+ test_grep "Error: Refusing to lose untracked file at y/e; writing to y/e~B\^0 instead" out && git ls-files -s >out && test_line_count = 3 out &&@@ -3377,7 +3377,7 @@ test_expect_success '10c1: Overwrite untracked with dir rename/rename(1to2)' ' if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: The following untracked working tree files would be overwritten by merge" err &&+ test_grep "error: The following untracked working tree files would be overwritten by merge" err && git ls-files -s >out && test_line_count = 4 out &&@@ -3386,8 +3386,8 @@ test_expect_success '10c1: Overwrite untracked with dir rename/rename(1to2)' ' git ls-files -o >out && test_line_count = 3 out else- test_i18ngrep "CONFLICT (rename/rename)" out &&- test_i18ngrep "Refusing to lose untracked file at y/c; adding as y/c~B\^0 instead" out &&+ test_grep "CONFLICT (rename/rename)" out &&+ test_grep "Refusing to lose untracked file at y/c; adding as y/c~B\^0 instead" out && git ls-files -s >out && test_line_count = 6 out &&@@ -3428,7 +3428,7 @@ test_expect_success '10c2: Overwrite untracked with dir rename/rename(1to2), oth if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: The following untracked working tree files would be overwritten by merge" err &&+ test_grep "error: The following untracked working tree files would be overwritten by merge" err && git ls-files -s >out && test_line_count = 4 out &&@@ -3437,8 +3437,8 @@ test_expect_success '10c2: Overwrite untracked with dir rename/rename(1to2), oth git ls-files -o >out && test_line_count = 3 out else- test_i18ngrep "CONFLICT (rename/rename)" out &&- test_i18ngrep "Refusing to lose untracked file at y/c; adding as y/c~HEAD instead" out &&+ test_grep "CONFLICT (rename/rename)" out &&+ test_grep "Refusing to lose untracked file at y/c; adding as y/c~HEAD instead" out && git ls-files -s >out && test_line_count = 6 out &&@@ -3517,7 +3517,7 @@ test_expect_success '10d: Delete untracked with dir rename/rename(2to1)' ' if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: The following untracked working tree files would be overwritten by merge" err &&+ test_grep "error: The following untracked working tree files would be overwritten by merge" err && git ls-files -s >out && test_line_count = 6 out &&@@ -3526,8 +3526,8 @@ test_expect_success '10d: Delete untracked with dir rename/rename(2to1)' ' git ls-files -o >out && test_line_count = 3 out else- test_i18ngrep "CONFLICT (rename/rename)" out &&- test_i18ngrep "Refusing to lose untracked file at y/wham" out &&+ test_grep "CONFLICT (rename/rename)" out &&+ test_grep "Refusing to lose untracked file at y/wham" out && git ls-files -s >out && test_line_count = 6 out &&@@ -3606,7 +3606,7 @@ test_expect_merge_algorithm failure success '10e: Does git complain about untrac echo random >z/c && git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&- test_i18ngrep ! "following untracked working tree files would be overwritten by merge" err &&+ test_grep ! "following untracked working tree files would be overwritten by merge" err && git ls-files -s >out && test_line_count = 3 out &&@@ -3690,9 +3690,9 @@ test_expect_success '11a: Avoid losing dirty contents with simple rename' ' if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: Your local changes to the following files would be overwritten by merge" err+ test_grep "error: Your local changes to the following files would be overwritten by merge" err else- test_i18ngrep "Refusing to lose dirty file at z/c" out &&+ test_grep "Refusing to lose dirty file at z/c" out && git ls-files -s >out && test_line_count = 2 out &&@@ -3770,10 +3770,10 @@ test_expect_success '11b: Avoid losing dirty file involved in directory rename' then test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err && test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: Your local changes to the following files would be overwritten by merge" err+ test_grep "error: Your local changes to the following files would be overwritten by merge" err else git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&- test_i18ngrep "Refusing to lose dirty file at z/c" out &&+ test_grep "Refusing to lose dirty file at z/c" out && git ls-files -s >out && test_line_count = 3 out &&@@ -3853,9 +3853,9 @@ test_expect_success '11c: Avoid losing not-uptodate with rename + D/F conflict' if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: Your local changes to the following files would be overwritten by merge" err+ test_grep "error: Your local changes to the following files would be overwritten by merge" err else- test_i18ngrep "following files would be overwritten by merge" err+ test_grep "following files would be overwritten by merge" err fi && grep -q stuff y/c &&@@ -3927,9 +3927,9 @@ test_expect_success '11d: Avoid losing not-uptodate with rename + D/F conflict' if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: Your local changes to the following files would be overwritten by merge" err+ test_grep "error: Your local changes to the following files would be overwritten by merge" err else- test_i18ngrep "Refusing to lose dirty file at z/c" out &&+ test_grep "Refusing to lose dirty file at z/c" out && git ls-files -s >out && test_line_count = 4 out &&@@ -4013,10 +4013,10 @@ test_expect_success '11e: Avoid deleting not-uptodate with dir rename/rename(1to if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: Your local changes to the following files would be overwritten by merge" err+ test_grep "error: Your local changes to the following files would be overwritten by merge" err else- test_i18ngrep "CONFLICT (rename/rename)" out &&- test_i18ngrep "Refusing to lose dirty file at y/c" out &&+ test_grep "CONFLICT (rename/rename)" out &&+ test_grep "Refusing to lose dirty file at y/c" out && git ls-files -s >out && test_line_count = 7 out &&@@ -4102,10 +4102,10 @@ test_expect_success '11f: Avoid deleting not-uptodate with dir rename/rename(2to if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_path_is_missing .git/MERGE_HEAD &&- test_i18ngrep "error: Your local changes to the following files would be overwritten by merge" err+ test_grep "error: Your local changes to the following files would be overwritten by merge" err else- test_i18ngrep "CONFLICT (rename/rename)" out &&- test_i18ngrep "Refusing to lose dirty file at y/wham" out &&+ test_grep "CONFLICT (rename/rename)" out &&+ test_grep "Refusing to lose dirty file at y/wham" out && git ls-files -s >out && test_line_count = 4 out &&@@ -5417,8 +5417,8 @@ test_expect_success '13a(conflict): messages for newly added files' ' test_must_fail git merge -s recursive B^0 >out 2>err &&- test_i18ngrep CONFLICT..file.location.*z/e/f.added.in.B^0.*y/e/f out &&- test_i18ngrep CONFLICT..file.location.*z/d.added.in.B^0.*y/d out &&+ test_grep CONFLICT..file.location.*z/e/f.added.in.B^0.*y/e/f out &&+ test_grep CONFLICT..file.location.*z/d.added.in.B^0.*y/d out && git ls-files >paths && ! grep z/ paths &&@@ -5441,8 +5441,8 @@ test_expect_success '13a(info): messages for newly added files' ' git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&- test_i18ngrep Path.updated:.*z/e/f.added.in.B^0.*y/e/f out &&- test_i18ngrep Path.updated:.*z/d.added.in.B^0.*y/d out &&+ test_grep Path.updated:.*z/e/f.added.in.B^0.*y/e/f out &&+ test_grep Path.updated:.*z/d.added.in.B^0.*y/d out && git ls-files >paths && ! grep z/ paths &&@@ -5507,8 +5507,8 @@ test_expect_success '13b(conflict): messages for transitive rename with conflict test_must_fail git merge -s recursive B^0 >out 2>err &&- test_i18ngrep CONFLICT.*content.*Merge.conflict.in.y/d out &&- test_i18ngrep CONFLICT..file.location.*x/d.renamed.to.z/d.*moved.to.y/d out &&+ test_grep CONFLICT.*content.*Merge.conflict.in.y/d out &&+ test_grep CONFLICT..file.location.*x/d.renamed.to.z/d.*moved.to.y/d out && git ls-files >paths && ! grep z/ paths &&@@ -5529,8 +5529,8 @@ test_expect_success '13b(info): messages for transitive rename with conflicted c test_must_fail git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&- test_i18ngrep CONFLICT.*content.*Merge.conflict.in.y/d out &&- test_i18ngrep Path.updated:.*x/d.renamed.to.z/d.in.B^0.*moving.it.to.y/d out &&+ test_grep CONFLICT.*content.*Merge.conflict.in.y/d out &&+ test_grep Path.updated:.*x/d.renamed.to.z/d.in.B^0.*moving.it.to.y/d out && git ls-files >paths && ! grep z/ paths &&@@ -5593,7 +5593,7 @@ test_expect_success '13c(conflict): messages for rename/rename(1to1) via transit test_must_fail git merge -s recursive B^0 >out 2>err &&- test_i18ngrep CONFLICT..file.location.*x/d.renamed.to.z/d.*moved.to.y/d out &&+ test_grep CONFLICT..file.location.*x/d.renamed.to.z/d.*moved.to.y/d out && git ls-files >paths && ! grep z/ paths &&@@ -5614,7 +5614,7 @@ test_expect_success '13c(info): messages for rename/rename(1to1) via transitive git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&- test_i18ngrep Path.updated:.*x/d.renamed.to.z/d.in.B^0.*moving.it.to.y/d out &&+ test_grep Path.updated:.*x/d.renamed.to.z/d.in.B^0.*moving.it.to.y/d out && git ls-files >paths && ! grep z/ paths &&@@ -5682,8 +5682,8 @@ test_expect_success '13d(conflict): messages for rename/rename(1to1) via dual tr test_must_fail git merge -s recursive B^0 >out 2>err &&- test_i18ngrep CONFLICT..file.location.*a/y.renamed.to.b/y.*moved.to.d/y out &&- test_i18ngrep CONFLICT..file.location.*a/y.renamed.to.c/y.*moved.to.d/y out &&+ test_grep CONFLICT..file.location.*a/y.renamed.to.b/y.*moved.to.d/y out &&+ test_grep CONFLICT..file.location.*a/y.renamed.to.c/y.*moved.to.d/y out && git ls-files >paths && ! grep b/ paths &&@@ -5706,8 +5706,8 @@ test_expect_success '13d(info): messages for rename/rename(1to1) via dual transi git -c merge.directoryRenames=true merge -s recursive B^0 >out 2>err &&- test_i18ngrep Path.updated.*a/y.renamed.to.b/y.*moving.it.to.d/y out &&- test_i18ngrep Path.updated.*a/y.renamed.to.c/y.*moving.it.to.d/y out &&+ test_grep Path.updated.*a/y.renamed.to.b/y.*moving.it.to.d/y out &&+ test_grep Path.updated.*a/y.renamed.to.c/y.*moving.it.to.d/y out && git ls-files >paths && ! grep b/ paths &&@@ -5821,9 +5821,9 @@ test_expect_success '13e: directory rename detection in recursive case' ' git -c merge.directoryRenames=conflict merge -s recursive C^0 >out 2>err &&- test_i18ngrep ! CONFLICT out &&- test_i18ngrep ! BUG: err &&- test_i18ngrep ! core.dumped err &&+ test_grep ! CONFLICT out &&+ test_grep ! BUG: err &&+ test_grep ! core.dumped err && test_must_be_empty err && git ls-files >paths &&
t/t6424-merge-unrelated-index-changes.sh
+3-3
index a61f20c22f..7677c5f08d 100755--- a/t/t6424-merge-unrelated-index-changes.sh+++ b/t/t6424-merge-unrelated-index-changes.sh@@ -178,7 +178,7 @@ test_expect_success 'merge-recursive, when index==head but head!=HEAD' ' test_when_finished "git clean -fd" && # Do not leave untracked around # Merge B & F, with B as "head" git merge-recursive A -- B F > out &&- test_i18ngrep "Already up to date" out+ test_grep "Already up to date" out ' test_expect_success 'recursive, when file has staged changes not matching HEAD nor what a merge would give' '@@ -194,7 +194,7 @@ test_expect_success 'recursive, when file has staged changes not matching HEAD n test_must_fail git merge -s recursive E^0 2>err && git rev-parse --verify :subdir/a >actual && test_cmp expect actual &&- test_i18ngrep "changes to the following files would be overwritten" err+ test_grep "changes to the following files would be overwritten" err ' test_expect_success 'recursive, when file has staged changes matching what a merge would give' '@@ -210,7 +210,7 @@ test_expect_success 'recursive, when file has staged changes matching what a mer test_must_fail git merge -s recursive E^0 2>err && git rev-parse --verify :subdir/a >actual && test_cmp expect actual &&- test_i18ngrep "changes to the following files would be overwritten" err+ test_grep "changes to the following files would be overwritten" err ' test_expect_success 'octopus, unrelated file touched' '
index fd21c1a486..b059475ed0 100755--- a/t/t6426-merge-skip-unneeded-updates.sh+++ b/t/t6426-merge-skip-unneeded-updates.sh@@ -375,7 +375,7 @@ test_expect_success '2c: Modify b & add c VS rename b->c' ' export GIT_MERGE_VERBOSITY && test_must_fail git merge -s recursive B^0 >out 2>err &&- test_i18ngrep "CONFLICT (.*/add):" out &&+ test_grep "CONFLICT (.*/add):" out && test_must_be_empty err && git ls-files -s >index_files &&
t/t6430-merge-recursive.sh
+4-4
index 07067bb347..ca15e6dd6d 100755--- a/t/t6430-merge-recursive.sh+++ b/t/t6430-merge-recursive.sh@@ -308,13 +308,13 @@ test_expect_success 'fail if the index has unresolved entries' ' test_must_fail git merge "$c5" && test_must_fail git merge "$c5" 2> out &&- test_i18ngrep "not possible because you have unmerged files" out &&+ test_grep "not possible because you have unmerged files" out && git add -u && test_must_fail git merge "$c5" 2> out &&- test_i18ngrep "You have not concluded your merge" out &&+ test_grep "You have not concluded your merge" out && rm -f .git/MERGE_HEAD && test_must_fail git merge "$c5" 2> out &&- test_i18ngrep "Your local changes to the following files would be overwritten by merge:" out+ test_grep "Your local changes to the following files would be overwritten by merge:" out ' test_expect_success 'merge-recursive remove conflict' '@@ -713,7 +713,7 @@ test_expect_success 'merge-recursive remembers the names of all base trees' ' test_must_fail git -c merge.verbosity=5 merge-recursive $(cat trees) -- $c1 $c3 >out && # ...but make sure it fails in the expected way- test_i18ngrep CONFLICT.*rename/rename out &&+ test_grep CONFLICT.*rename/rename out && # merge-recursive prints in reverse order, but we do not care sort <trees >expect &&
index c0b7bd7c3f..4f4376421e 100755--- a/t/t6436-merge-overwrite.sh+++ b/t/t6436-merge-overwrite.sh@@ -104,12 +104,12 @@ test_expect_success 'will not overwrite unstaged changes in renamed file' ' if test "$GIT_TEST_MERGE_ALGORITHM" = ort then test_must_fail git merge c1a >out 2>err &&- test_i18ngrep "would be overwritten by merge" err &&+ test_grep "would be overwritten by merge" err && test_cmp important other.c && test_path_is_missing .git/MERGE_HEAD else test_must_fail git merge c1a >out &&- test_i18ngrep "Refusing to lose dirty file at other.c" out &&+ test_grep "Refusing to lose dirty file at other.c" out && test_path_is_file other.c~HEAD && test $(git hash-object other.c~HEAD) = $(git rev-parse c1a:c1.c) && test_cmp important other.c
t/t6437-submodule-merge.sh
+1-1
index c9a86f2e94..f1440697d1 100755--- a/t/t6437-submodule-merge.sh+++ b/t/t6437-submodule-merge.sh@@ -479,7 +479,7 @@ test_expect_merge_algorithm failure success !FAIL_PREREQS 'directory/submodule c # We do not want files within the submodule to prevent the # merge from starting; we should not be writing to such paths # anyway.- test_i18ngrep ! "refusing to lose untracked file at" err+ test_grep ! "refusing to lose untracked file at" err ) '
t/t6500-gc.sh
+7-7
index 69509d0c11..4a188cefb0 100755--- a/t/t6500-gc.sh+++ b/t/t6500-gc.sh@@ -41,7 +41,7 @@ test_expect_success 'gc does not leave behind pid file' ' test_expect_success 'gc --gobbledegook' ' test_expect_code 129 git gc --nonsense 2>err &&- test_i18ngrep "[Uu]sage: git gc" err+ test_grep "[Uu]sage: git gc" err ' test_expect_success 'gc -h with invalid configuration' '@@ -52,7 +52,7 @@ test_expect_success 'gc -h with invalid configuration' ' echo "[gc] pruneexpire = CORRUPT" >>.git/config && test_expect_code 129 git gc -h >usage 2>&1 ) &&- test_i18ngrep "[Uu]sage" broken/usage+ test_grep "[Uu]sage" broken/usage ' test_expect_success 'gc is not aborted due to a stale symref' '@@ -155,7 +155,7 @@ test_expect_success 'auto gc with too many loose objects does not attempt to cre test_commit "$(test_oid obj4)" && git gc --auto 2>err &&- test_i18ngrep ! "^warning:" err &&+ test_grep ! "^warning:" err && ls .git/objects/pack/pack-*.pack | sort >post_packs && comm -1 -3 existing_packs post_packs >new && comm -2 -3 existing_packs post_packs >del &&@@ -166,15 +166,15 @@ test_expect_success 'auto gc with too many loose objects does not attempt to cre test_expect_success 'gc --no-quiet' ' GIT_PROGRESS_DELAY=0 git -c gc.writeCommitGraph=true gc --no-quiet >stdout 2>stderr && test_must_be_empty stdout &&- test_i18ngrep "Computing commit graph generation numbers" stderr+ test_grep "Computing commit graph generation numbers" stderr ' test_expect_success TTY 'with TTY: gc --no-quiet' ' test_terminal env GIT_PROGRESS_DELAY=0 \ git -c gc.writeCommitGraph=true gc --no-quiet >stdout 2>stderr && test_must_be_empty stdout &&- test_i18ngrep "Enumerating objects" stderr &&- test_i18ngrep "Computing commit graph generation numbers" stderr+ test_grep "Enumerating objects" stderr &&+ test_grep "Computing commit graph generation numbers" stderr ' test_expect_success 'gc --quiet' '@@ -321,7 +321,7 @@ test_expect_success 'background auto gc does not run if gc.log is present and re test_config gc.autodetach true && echo fleem >.git/gc.log && git gc --auto 2>err &&- test_i18ngrep "^warning:" err &&+ test_grep "^warning:" err && test_config gc.logexpiry 5.days && test-tool chmtime =-345600 .git/gc.log && git gc --auto &&
t/t7001-mv.sh
+2-2
index f136ea76f7..879a6dce60 100755--- a/t/t7001-mv.sh+++ b/t/t7001-mv.sh@@ -296,7 +296,7 @@ test_expect_success 'git mv error on conflicted file' ' EOF test_must_fail git mv conflict newname 2>actual &&- test_i18ngrep "conflicted" actual+ test_grep "conflicted" actual ' test_expect_success 'git mv should overwrite symlink to a file' '@@ -482,7 +482,7 @@ test_expect_success 'checking out a commit before submodule moved needs manual u git mv sub sub2 && git commit -m "moved sub to sub2" && git checkout -q HEAD^ 2>actual &&- test_i18ngrep "^warning: unable to rmdir '\''sub2'\'':" actual &&+ test_grep "^warning: unable to rmdir '\''sub2'\'':" actual && git status -s sub2 >actual && echo "?? sub2/" >expected && test_cmp expected actual &&
t/t7105-reset-patch.sh
+3-3
index 9b46da7aaa..05079c7246 100755--- a/t/t7105-reset-patch.sh+++ b/t/t7105-reset-patch.sh@@ -30,21 +30,21 @@ test_expect_success PERL 'git reset -p' ' test_write_lines n y | git reset -p >output && verify_state dir/foo work head && verify_saved_state bar &&- test_i18ngrep "Unstage" output+ test_grep "Unstage" output ' test_expect_success PERL 'git reset -p HEAD^' ' test_write_lines n y | git reset -p HEAD^ >output && verify_state dir/foo work parent && verify_saved_state bar &&- test_i18ngrep "Apply" output+ test_grep "Apply" output ' test_expect_success PERL 'git reset -p HEAD^^{tree}' ' test_write_lines n y | git reset -p HEAD^^{tree} >output && verify_state dir/foo work parent && verify_saved_state bar &&- test_i18ngrep "Apply" output+ test_grep "Apply" output ' test_expect_success PERL 'git reset -p HEAD^:dir/foo (blob fails)' '
t/t7106-reset-unborn-branch.sh
+1-1
index a0b67a0b84..d20e5709f9 100755--- a/t/t7106-reset-unborn-branch.sh+++ b/t/t7106-reset-unborn-branch.sh@@ -42,7 +42,7 @@ test_expect_success PERL 'reset -p' ' git ls-files >actual && test_must_be_empty actual &&- test_i18ngrep "Unstage" output+ test_grep "Unstage" output ' test_expect_success 'reset --soft is a no-op' '
t/t7107-reset-pathspec-file.sh
+5-5
index af5ea406db..020db201d5 100755--- a/t/t7107-reset-pathspec-file.sh+++ b/t/t7107-reset-pathspec-file.sh@@ -161,19 +161,19 @@ test_expect_success 'error conditions' ' git rm fileA.t && test_must_fail git reset --pathspec-from-file=list --patch 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--patch. cannot be used together" err && test_must_fail git reset --pathspec-from-file=list -- fileA.t 2>err &&- test_i18ngrep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err &&+ test_grep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err && test_must_fail git reset --pathspec-file-nul 2>err &&- test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err &&+ test_grep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err && test_must_fail git reset --soft --pathspec-from-file=list 2>err &&- test_i18ngrep -e "fatal: Cannot do soft reset with paths" err &&+ test_grep -e "fatal: Cannot do soft reset with paths" err && test_must_fail git reset --hard --pathspec-from-file=list 2>err &&- test_i18ngrep -e "fatal: Cannot do hard reset with paths" err+ test_grep -e "fatal: Cannot do hard reset with paths" err ' test_done
t/t7110-reset-merge.sh
+3-3
index 772480a345..7ee180f81d 100755--- a/t/t7110-reset-merge.sh+++ b/t/t7110-reset-merge.sh@@ -238,7 +238,7 @@ test_expect_success '"reset --keep HEAD^" fails with pending merge' ' git reset --hard third && test_must_fail git merge branch1 && test_must_fail git reset --keep HEAD^ 2>err.log &&- test_i18ngrep "middle of a merge" err.log+ test_grep "middle of a merge" err.log ' # The next test will test the following:@@ -264,7 +264,7 @@ test_expect_success '"reset --keep HEAD" fails with pending merge' ' git reset --hard third && test_must_fail git merge branch1 && test_must_fail git reset --keep HEAD 2>err.log &&- test_i18ngrep "middle of a merge" err.log+ test_grep "middle of a merge" err.log ' test_expect_success '--merge is ok with added/deleted merge' '@@ -290,7 +290,7 @@ test_expect_success '--keep fails with added/deleted merge' ' git diff --exit-code file3 && git diff --exit-code branch3 file3 && test_must_fail git reset --keep HEAD 2>err.log &&- test_i18ngrep "middle of a merge" err.log+ test_grep "middle of a merge" err.log ' test_done
t/t7201-co.sh
+2-2
index 35b9e6ed6b..c2550f3028 100755--- a/t/t7201-co.sh+++ b/t/t7201-co.sh@@ -217,7 +217,7 @@ test_expect_success 'switch to another branch while carrying a deletion' ' git rm two && test_must_fail git checkout simple 2>errs &&- test_i18ngrep overwritten errs &&+ test_grep overwritten errs && test_must_fail git read-tree --quiet -m -u HEAD simple 2>errs && test_must_be_empty errs@@ -229,7 +229,7 @@ test_expect_success 'checkout to detach HEAD (with advice declined)' ' git checkout -f renamer && git clean -f && git checkout renamer^ 2>messages &&- test_i18ngrep "HEAD is now at $rev" messages &&+ test_grep "HEAD is now at $rev" messages && test_line_count = 1 messages && H=$(git rev-parse --verify HEAD) && M=$(git show-ref -s --verify refs/heads/main) &&
t/t7300-clean.sh
+1-1
index 0ef7b78457..1a310a45fd 100755--- a/t/t7300-clean.sh+++ b/t/t7300-clean.sh@@ -735,7 +735,7 @@ test_expect_success MINGW 'handle clean & core.longpaths = false nicely' ' test_must_fail git clean -xdf 2>.git/err && # grepping for a strerror string is unportable but it is OK here with # MINGW prereq- test_i18ngrep "too long" .git/err+ test_grep "too long" .git/err ' test_expect_success 'clean untracked paths by pathspec' '
t/t7400-submodule-basic.sh
+32-32
index d9fbabb2b9..00c1f1aab1 100755--- a/t/t7400-submodule-basic.sh+++ b/t/t7400-submodule-basic.sh@@ -60,7 +60,7 @@ test_expect_success 'submodule init aborts on missing .gitmodules file' ' git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub && # missing the .gitmodules file here test_must_fail git submodule init 2>actual &&- test_i18ngrep "No url found for submodule path" actual+ test_grep "No url found for submodule path" actual ' test_expect_success 'submodule update aborts on missing .gitmodules file' '@@ -68,7 +68,7 @@ test_expect_success 'submodule update aborts on missing .gitmodules file' ' git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub && # missing the .gitmodules file here git submodule update sub 2>actual &&- test_i18ngrep "Submodule path .sub. not initialized" actual+ test_grep "Submodule path .sub. not initialized" actual ' test_expect_success 'submodule update aborts on missing gitmodules url' '@@ -100,7 +100,7 @@ test_expect_success 'status should ignore inner git repo when not added' ' ) && test_must_fail git submodule status inner 2>output.err && rm -fr inner &&- test_i18ngrep "^error: .*did not match any file(s) known to git" output.err+ test_grep "^error: .*did not match any file(s) known to git" output.err ' test_expect_success 'setup - repository in init subdirectory' '@@ -196,7 +196,7 @@ test_expect_success 'redirected submodule add does not show progress' ' git -C addtest submodule add "file://$submodurl/parent" submod-redirected \ 2>err && ! grep % err &&- test_i18ngrep ! "Checking connectivity" err+ test_grep ! "Checking connectivity" err ' test_expect_success 'redirected submodule add --progress does show progress' '@@ -263,7 +263,7 @@ test_expect_success 'submodule add relays add --dry-run stderr' ' cd addtest && : >.git/index.lock && ! git submodule add "$submodurl" sub-while-locked 2>output.err &&- test_i18ngrep "^fatal: .*index\.lock" output.err &&+ test_grep "^fatal: .*index\.lock" output.err && test_path_is_missing sub-while-locked ) '@@ -405,7 +405,7 @@ test_expect_success 'submodule add in subdirectory with relative path should fai cd addtest/sub && test_must_fail git submodule add ../../ submod3 2>../../output.err ) &&- test_i18ngrep toplevel output.err+ test_grep toplevel output.err ' test_expect_success 'setup - add an example entry to .gitmodules' '@@ -486,7 +486,7 @@ test_expect_success 'status should still be "missing" after initializing' ' test_failure_with_unknown_submodule () { test_must_fail git submodule $1 no-such-submodule 2>output.err &&- test_i18ngrep "^error: .*no-such-submodule" output.err+ test_grep "^error: .*no-such-submodule" output.err } test_expect_success 'init should fail with unknown submodule' '@@ -644,7 +644,7 @@ test_expect_success 'update --init' ' test_must_fail git config submodule.example.url && git submodule update init 2> update.out &&- test_i18ngrep "not initialized" update.out &&+ test_grep "not initialized" update.out && test_must_fail git rev-parse --resolve-git-dir init/.git && git submodule update --init init &&@@ -661,7 +661,7 @@ test_expect_success 'update --init from subdirectory' ' ( cd sub && git submodule update ../init 2>update.out &&- test_i18ngrep "not initialized" update.out &&+ test_grep "not initialized" update.out && test_must_fail git rev-parse --resolve-git-dir ../init/.git && git submodule update --init ../init@@ -1121,7 +1121,7 @@ test_expect_success 'submodule deinit from subdirectory' ' cd sub && git submodule deinit ../init >../output ) &&- test_i18ngrep "\\.\\./init" output &&+ test_grep "\\.\\./init" output && test -z "$(git config --get-regexp "submodule\.example\.")" && test -n "$(git config --get-regexp "submodule\.example2\.")" && test -f example2/.git &&@@ -1136,8 +1136,8 @@ test_expect_success 'submodule deinit . deinits all initialized submodules' ' git submodule deinit . >actual && test -z "$(git config --get-regexp "submodule\.example\.")" && test -z "$(git config --get-regexp "submodule\.example2\.")" &&- test_i18ngrep "Cleared directory .init" actual &&- test_i18ngrep "Cleared directory .example2" actual &&+ test_grep "Cleared directory .init" actual &&+ test_grep "Cleared directory .example2" actual && rmdir init example2 '@@ -1149,8 +1149,8 @@ test_expect_success 'submodule deinit --all deinits all initialized submodules' git submodule deinit --all >actual && test -z "$(git config --get-regexp "submodule\.example\.")" && test -z "$(git config --get-regexp "submodule\.example2\.")" &&- test_i18ngrep "Cleared directory .init" actual &&- test_i18ngrep "Cleared directory .example2" actual &&+ test_grep "Cleared directory .init" actual &&+ test_grep "Cleared directory .example2" actual && rmdir init example2 '@@ -1160,8 +1160,8 @@ test_expect_success 'submodule deinit deinits a submodule when its work tree is git submodule deinit init example2 >actual && test -z "$(git config --get-regexp "submodule\.example\.")" && test -z "$(git config --get-regexp "submodule\.example2\.")" &&- test_i18ngrep ! "Cleared directory .init" actual &&- test_i18ngrep "Cleared directory .example2" actual &&+ test_grep ! "Cleared directory .init" actual &&+ test_grep "Cleared directory .example2" actual && rmdir init '@@ -1173,7 +1173,7 @@ test_expect_success 'submodule deinit fails when the submodule contains modifica test -f example2/.git && git submodule deinit -f init >actual && test -z "$(git config --get-regexp "submodule\.example\.")" &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep "Cleared directory .init" actual && rmdir init '@@ -1185,7 +1185,7 @@ test_expect_success 'submodule deinit fails when the submodule contains untracke test -f example2/.git && git submodule deinit -f init >actual && test -z "$(git config --get-regexp "submodule\.example\.")" &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep "Cleared directory .init" actual && rmdir init '@@ -1200,30 +1200,30 @@ test_expect_success 'submodule deinit fails when the submodule HEAD does not mat test -f example2/.git && git submodule deinit -f init >actual && test -z "$(git config --get-regexp "submodule\.example\.")" &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep "Cleared directory .init" actual && rmdir init ' test_expect_success 'submodule deinit is silent when used on an uninitialized submodule' ' git submodule update --init && git submodule deinit init >actual &&- test_i18ngrep "Submodule .example. (.*) unregistered for path .init" actual &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep "Submodule .example. (.*) unregistered for path .init" actual &&+ test_grep "Cleared directory .init" actual && git submodule deinit init >actual &&- test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep ! "Submodule .example. (.*) unregistered for path .init" actual &&+ test_grep "Cleared directory .init" actual && git submodule deinit . >actual &&- test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&- test_i18ngrep "Submodule .example2. (.*) unregistered for path .example2" actual &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep ! "Submodule .example. (.*) unregistered for path .init" actual &&+ test_grep "Submodule .example2. (.*) unregistered for path .example2" actual &&+ test_grep "Cleared directory .init" actual && git submodule deinit . >actual &&- test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&- test_i18ngrep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep ! "Submodule .example. (.*) unregistered for path .init" actual &&+ test_grep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&+ test_grep "Cleared directory .init" actual && git submodule deinit --all >actual &&- test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&- test_i18ngrep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&- test_i18ngrep "Cleared directory .init" actual &&+ test_grep ! "Submodule .example. (.*) unregistered for path .init" actual &&+ test_grep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&+ test_grep "Cleared directory .init" actual && rmdir init example2 '
t/t7403-submodule-sync.sh
+2-2
index ff09443a0a..19b6135d11 100755--- a/t/t7403-submodule-sync.sh+++ b/t/t7403-submodule-sync.sh@@ -163,7 +163,7 @@ test_expect_success '"git submodule sync" should update submodule URLs - subdire cd sub && git submodule sync >../../output ) &&- test_i18ngrep "\\.\\./submodule" output &&+ test_grep "\\.\\./submodule" output && test -d "$( cd super-clone/submodule && git config remote.origin.url@@ -194,7 +194,7 @@ test_expect_success '"git submodule sync --recursive" should update all submodul cd sub && git submodule sync --recursive >../../output ) &&- test_i18ngrep "\\.\\./submodule/sub-submodule" output &&+ test_grep "\\.\\./submodule/sub-submodule" output && test -d "$( cd super-clone/submodule && git config remote.origin.url
t/t7406-submodule-update.sh
+3-3
index 00651c25cb..8491b8c58b 100755--- a/t/t7406-submodule-update.sh+++ b/t/t7406-submodule-update.sh@@ -945,7 +945,7 @@ test_expect_success 'submodule update places git-dir in superprojects git-dir re git clone super_update_r super_update_r2 && (cd super_update_r2 && git submodule update --init --recursive >actual &&- test_i18ngrep "Submodule path .submodule/subsubmodule.: checked out" actual &&+ test_grep "Submodule path .submodule/subsubmodule.: checked out" actual && (cd submodule/subsubmodule && git log > ../../expected ) &&@@ -1025,7 +1025,7 @@ test_expect_success 'submodule update clone shallow submodule outside of depth' # unadvertised objects, so restrict this test to v0. test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \ git submodule update --init --depth=1 2>actual &&- test_i18ngrep "Direct fetching of that commit failed." actual &&+ test_grep "Direct fetching of that commit failed." actual && git -C ../submodule config uploadpack.allowReachableSHA1InWant true && git submodule update --init --depth=1 >actual && git -C submodule log --oneline >out &&@@ -1039,7 +1039,7 @@ test_expect_success 'submodule update --recursive drops module name before recur git checkout HEAD^ ) && git submodule update --recursive deeper/submodule >actual &&- test_i18ngrep "Submodule path .deeper/submodule/subsubmodule.: checked out" actual+ test_grep "Submodule path .deeper/submodule/subsubmodule.: checked out" actual ) '
t/t7411-submodule-config.sh
+2-2
index c0167944ab..31271f8e0a 100755--- a/t/t7411-submodule-config.sh+++ b/t/t7411-submodule-config.sh@@ -45,7 +45,7 @@ test_expect_success 'configuration parsing with error' ' ( cd repo && test_must_fail test-tool submodule-config "" s 2>actual &&- test_i18ngrep "bad config" actual+ test_grep "bad config" actual ) '@@ -101,7 +101,7 @@ test_expect_success 'error in history of one submodule config lets continue, std >actual \ 2>actual_stderr && test_cmp expect_error actual &&- test_i18ngrep "submodule-blob $sha1:.gitmodules" actual_stderr >/dev/null+ test_grep "submodule-blob $sha1:.gitmodules" actual_stderr >/dev/null ) '
index 5fcaa0b4f2..4dca8d97a7 100755--- a/t/t7500-commit-template-squash-signoff.sh+++ b/t/t7500-commit-template-squash-signoff.sh@@ -555,7 +555,7 @@ test_expect_success 'commit without staging files fails and displays hints' ' git commit -m initial && echo "changes" >>file && test_must_fail git commit -m update >actual &&- test_i18ngrep "no changes added to commit (use \"git add\" and/or \"git commit -a\")" actual+ test_grep "no changes added to commit (use \"git add\" and/or \"git commit -a\")" actual ' test_done
t/t7501-commit-basic-functionality.sh
+3-3
index fb5417d5e7..3d8500a52e 100755--- a/t/t7501-commit-basic-functionality.sh+++ b/t/t7501-commit-basic-functionality.sh@@ -21,7 +21,7 @@ test_expect_success 'initial status' ' echo bongo bongo >file && git add file && git status >actual &&- test_i18ngrep "No commits yet" actual+ test_grep "No commits yet" actual ' test_expect_success 'fail initial amend' '@@ -141,7 +141,7 @@ test_expect_success 'template "emptyness" check does not kick in with -F' ' test_expect_success 'template "emptyness" check' ' git checkout HEAD file && echo >>file && git add file && test_must_fail git commit -t file 2>err &&- test_i18ngrep "did not edit" err+ test_grep "did not edit" err ' test_expect_success 'setup: commit message from file' '@@ -671,7 +671,7 @@ test_expect_success 'commit a file whose name is a dash' ' git add ./- && test_tick && git commit -m "add dash" >output </dev/null &&- test_i18ngrep " changed, 5 insertions" output+ test_grep " changed, 5 insertions" output ' test_expect_success '--only works on to-be-born branch' '
t/t7502-commit-porcelain.sh
+16-16
index b5bf7de7cd..61c8e810cc 100755--- a/t/t7502-commit-porcelain.sh+++ b/t/t7502-commit-porcelain.sh@@ -706,14 +706,14 @@ test_expect_success 'cleanup commit message (whitespace config, -m)' ' test_expect_success 'message shows author when it is not equal to committer' ' echo >>negative && git commit -e -m "sample" -a &&- test_i18ngrep \+ test_grep \ "^# Author: *A U Thor <author@example.com>\$" \ .git/COMMIT_EDITMSG ' test_expect_success 'message shows date when it is explicitly set' ' git commit --allow-empty -e -m foo --date="2010-01-02T03:04:05" &&- test_i18ngrep \+ test_grep \ "^# Date: *Sat Jan 2 03:04:05 2010 +0000" \ .git/COMMIT_EDITMSG '@@ -728,7 +728,7 @@ test_expect_success AUTOIDENT 'message shows committer when it is automatic' ' ) && # the ident is calculated from the system, so we cannot # check the actual value, only that it is there- test_i18ngrep "^# Committer: " .git/COMMIT_EDITMSG+ test_grep "^# Committer: " .git/COMMIT_EDITMSG ' write_script .git/FAKE_EDITOR <<EOF@@ -860,9 +860,9 @@ try_commit () { GIT_EDITOR=.git/FAKE_EDITOR git commit -a $* $use_template && case "$use_template" in '')- test_i18ngrep ! "^## Custom template" .git/COMMIT_EDITMSG ;;+ test_grep ! "^## Custom template" .git/COMMIT_EDITMSG ;; *)- test_i18ngrep "^## Custom template" .git/COMMIT_EDITMSG ;;+ test_grep "^## Custom template" .git/COMMIT_EDITMSG ;; esac }@@ -870,53 +870,53 @@ try_commit_status_combo () { test_expect_success 'commit' ' try_commit "" &&- test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit --status' ' try_commit --status &&- test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit --no-status' ' try_commit --no-status &&- test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit with commit.status = yes' ' test_config commit.status yes && try_commit "" &&- test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit with commit.status = no' ' test_config commit.status no && try_commit "" &&- test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit --status with commit.status = yes' ' test_config commit.status yes && try_commit --status &&- test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit --no-status with commit.status = yes' ' test_config commit.status yes && try_commit --no-status &&- test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit --status with commit.status = no' ' test_config commit.status no && try_commit --status &&- test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep "^# Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'commit --no-status with commit.status = no' ' test_config commit.status no && try_commit --no-status &&- test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG ' }@@ -930,13 +930,13 @@ try_commit_status_combo test_expect_success 'commit --status with custom comment character' ' test_config core.commentchar ";" && try_commit --status &&- test_i18ngrep "^; Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep "^; Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'switch core.commentchar' ' test_commit "#foo" foo && GIT_EDITOR=.git/FAKE_EDITOR git -c core.commentChar=auto commit --amend &&- test_i18ngrep "^; Changes to be committed:" .git/COMMIT_EDITMSG+ test_grep "^; Changes to be committed:" .git/COMMIT_EDITMSG ' test_expect_success 'switch core.commentchar but out of options' '
t/t7506-status-submodule.sh
+14-14
index d050091345..46566d529e 100755--- a/t/t7506-status-submodule.sh+++ b/t/t7506-status-submodule.sh@@ -37,19 +37,19 @@ test_expect_success 'setup' ' test_expect_success 'status clean' ' git status >output &&- test_i18ngrep "nothing to commit" output+ test_grep "nothing to commit" output ' test_expect_success 'commit --dry-run -a clean' ' test_must_fail git commit --dry-run -a >output &&- test_i18ngrep "nothing to commit" output+ test_grep "nothing to commit" output ' test_expect_success 'status with modified file in submodule' ' (cd sub && git reset --hard) && echo "changed" >sub/foo && git status >output &&- test_i18ngrep "modified: sub (modified content)" output+ test_grep "modified: sub (modified content)" output ' test_expect_success 'status with modified file in submodule (porcelain)' '@@ -73,7 +73,7 @@ test_expect_success 'status with modified file in submodule (short)' ' test_expect_success 'status with added file in submodule' ' (cd sub && git reset --hard && echo >foo && git add foo) && git status >output &&- test_i18ngrep "modified: sub (modified content)" output+ test_grep "modified: sub (modified content)" output ' test_expect_success 'status with added file in submodule (porcelain)' '@@ -96,12 +96,12 @@ test_expect_success 'status with untracked file in submodule' ' (cd sub && git reset --hard) && echo "content" >sub/new-file && git status >output &&- test_i18ngrep "modified: sub (untracked content)" output+ test_grep "modified: sub (untracked content)" output ' test_expect_success 'status -uno with untracked file in submodule' ' git status -uno >output &&- test_i18ngrep "^nothing to commit" output+ test_grep "^nothing to commit" output ' test_expect_success 'status with untracked file in submodule (porcelain)' '@@ -122,7 +122,7 @@ test_expect_success 'status with added and untracked file in submodule' ' (cd sub && git reset --hard && echo >foo && git add foo) && echo "content" >sub/new-file && git status >output &&- test_i18ngrep "modified: sub (modified content, untracked content)" output+ test_grep "modified: sub (modified content, untracked content)" output ' test_expect_success 'status with added and untracked file in submodule (porcelain)' '@@ -140,7 +140,7 @@ test_expect_success 'status with modified file in modified submodule' ' (cd sub && echo "next change" >foo && git commit -m "next change" foo) && echo "changed" >sub/foo && git status >output &&- test_i18ngrep "modified: sub (new commits, modified content)" output+ test_grep "modified: sub (new commits, modified content)" output ' test_expect_success 'status with modified file in modified submodule (porcelain)' '@@ -155,7 +155,7 @@ test_expect_success 'status with modified file in modified submodule (porcelain) test_expect_success 'status with added file in modified submodule' ' (cd sub && git reset --hard && echo >foo && git add foo) && git status >output &&- test_i18ngrep "modified: sub (new commits, modified content)" output+ test_grep "modified: sub (new commits, modified content)" output ' test_expect_success 'status with added file in modified submodule (porcelain)' '@@ -170,7 +170,7 @@ test_expect_success 'status with untracked file in modified submodule' ' (cd sub && git reset --hard) && echo "content" >sub/new-file && git status >output &&- test_i18ngrep "modified: sub (new commits, untracked content)" output+ test_grep "modified: sub (new commits, untracked content)" output ' test_expect_success 'status with untracked file in modified submodule (porcelain)' '@@ -184,7 +184,7 @@ test_expect_success 'status with added and untracked file in modified submodule' (cd sub && git reset --hard && echo >foo && git add foo) && echo "content" >sub/new-file && git status >output &&- test_i18ngrep "modified: sub (new commits, modified content, untracked content)" output+ test_grep "modified: sub (new commits, modified content, untracked content)" output ' test_expect_success 'status with added and untracked file in modified submodule (porcelain)' '@@ -209,7 +209,7 @@ test_expect_success 'setup .git file for sub' ' test_expect_success 'status with added file in modified submodule with .git file' ' (cd sub && git reset --hard && echo >foo && git add foo) && git status >output &&- test_i18ngrep "modified: sub (new commits, modified content)" output+ test_grep "modified: sub (new commits, modified content)" output ' test_expect_success 'status with a lot of untracked files in the submodule' '@@ -234,12 +234,12 @@ test_expect_success 'rm submodule contents' ' test_expect_success 'status clean (empty submodule dir)' ' git status >output &&- test_i18ngrep "nothing to commit" output+ test_grep "nothing to commit" output ' test_expect_success 'status -a clean (empty submodule dir)' ' test_must_fail git commit --dry-run -a >output &&- test_i18ngrep "nothing to commit" output+ test_grep "nothing to commit" output ' cat >status_expect <<\EOF
t/t7507-commit-verbose.sh
+2-2
index 916470c48b..c3281b192e 100755--- a/t/t7507-commit-verbose.sh+++ b/t/t7507-commit-verbose.sh@@ -89,7 +89,7 @@ test_expect_success 'submodule log is stripped out too with -v' ' export GIT_EDITOR && test_must_fail git commit -a -v 2>err ) &&- test_i18ngrep "Aborting commit due to empty commit message." err+ test_grep "Aborting commit due to empty commit message." err ' test_expect_success 'verbose diff is stripped out with set core.commentChar' '@@ -98,7 +98,7 @@ test_expect_success 'verbose diff is stripped out with set core.commentChar' ' export GIT_EDITOR && test_must_fail git -c core.commentchar=";" commit -a -v 2>err ) &&- test_i18ngrep "Aborting commit due to empty commit message." err+ test_grep "Aborting commit due to empty commit message." err ' test_expect_success 'status does not verbose without --verbose' '
t/t7508-status.sh
+12-12
index 6928fd89f5..1607df4c2a 100755--- a/t/t7508-status.sh+++ b/t/t7508-status.sh@@ -19,7 +19,7 @@ test_expect_success 'status -h in broken repository' ' echo "[status] showuntrackedfiles = CORRUPT" >>.git/config && test_expect_code 129 git status -h >usage 2>&1 ) &&- test_i18ngrep "[Uu]sage" broken/usage+ test_grep "[Uu]sage" broken/usage ' test_expect_success 'commit -h in broken repository' '@@ -31,7 +31,7 @@ test_expect_success 'commit -h in broken repository' ' echo "[status] showuntrackedfiles = CORRUPT" >>.git/config && test_expect_code 129 git commit -h >usage 2>&1 ) &&- test_i18ngrep "[Uu]sage" broken/usage+ test_grep "[Uu]sage" broken/usage ' test_expect_success 'create upstream branch' '@@ -72,7 +72,7 @@ test_expect_success 'setup' ' ' test_expect_success 'status (1)' '- test_i18ngrep "use \"git rm --cached <file>\.\.\.\" to unstage" output+ test_grep "use \"git rm --cached <file>\.\.\.\" to unstage" output ' strip_comments () {@@ -1542,12 +1542,12 @@ test_expect_success 'git commit will commit a staged but ignored submodule' ' git config --add -f .gitmodules submodule.subname.path sm && git config --add submodule.subname.ignore all && git status -s --ignore-submodules=dirty >output &&- test_i18ngrep "^M. sm" output &&+ test_grep "^M. sm" output && GIT_EDITOR="echo hello >>\"\$1\"" && export GIT_EDITOR && git commit -uno && git status -s --ignore-submodules=dirty >output &&- test_i18ngrep ! "^M. sm" output+ test_grep ! "^M. sm" output ' test_expect_success 'git commit --dry-run will show a staged but ignored submodule' '@@ -1572,13 +1572,13 @@ EOF git commit -uno --dry-run >output && test_cmp expect output && git status -s --ignore-submodules=dirty >output &&- test_i18ngrep "^M. sm" output+ test_grep "^M. sm" output ' test_expect_success 'git commit -m will commit a staged but ignored submodule' ' git commit -uno -m message && git status -s --ignore-submodules=dirty >output &&- test_i18ngrep ! "^M. sm" output &&+ test_grep ! "^M. sm" output && git config --remove-section submodule.subname && git config -f .gitmodules --remove-section submodule.subname '@@ -1591,7 +1591,7 @@ test_expect_success 'show stash info with "--show-stash"' ' git stash && git status >expected_default && git status --show-stash >expected_with_stash &&- test_i18ngrep "^Your stash currently has 1 entry$" expected_with_stash+ test_grep "^Your stash currently has 1 entry$" expected_with_stash ' test_expect_success 'no stash info with "--show-stash --no-show-stash"' '@@ -1618,14 +1618,14 @@ test_expect_success 'no additional info if no stash entries' ' test_expect_success '"No commits yet" should be noted in status output' ' git checkout --orphan empty-branch-1 && git status >output &&- test_i18ngrep "No commits yet" output+ test_grep "No commits yet" output ' test_expect_success '"No commits yet" should not be noted in status output' ' git checkout --orphan empty-branch-2 && test_commit test-commit-1 && git status >output &&- test_i18ngrep ! "No commits yet" output+ test_grep ! "No commits yet" output ' test_expect_success '"Initial commit" should be noted in commit template' '@@ -1633,7 +1633,7 @@ test_expect_success '"Initial commit" should be noted in commit template' ' touch to_be_committed_1 && git add to_be_committed_1 && git commit --dry-run >output &&- test_i18ngrep "Initial commit" output+ test_grep "Initial commit" output ' test_expect_success '"Initial commit" should not be noted in commit template' '@@ -1642,7 +1642,7 @@ test_expect_success '"Initial commit" should not be noted in commit template' ' touch to_be_committed_2 && git add to_be_committed_2 && git commit --dry-run >output &&- test_i18ngrep ! "Initial commit" output+ test_grep ! "Initial commit" output ' test_expect_success '--no-optional-locks prevents index update' '
t/t7509-commit-authorship.sh
+2-2
index 5d890949f7..fd8c8f8f0b 100755--- a/t/t7509-commit-authorship.sh+++ b/t/t7509-commit-authorship.sh@@ -99,7 +99,7 @@ test_expect_success '--amend option with empty author' ' echo "Empty author test" >>foo && test_tick && test_must_fail git commit -a -m "empty author" --amend 2>err &&- test_i18ngrep "empty ident" err+ test_grep "empty ident" err ' test_expect_success '--amend option with missing author' '@@ -112,7 +112,7 @@ test_expect_success '--amend option with missing author' ' echo "Missing author test" >>foo && test_tick && test_must_fail git commit -a -m "malformed author" --amend 2>err &&- test_i18ngrep "empty ident" err+ test_grep "empty ident" err ' test_expect_success '--reset-author makes the commit ours even with --amend option' '
index 8348e3ae7d..7ee69ecdd4 100755--- a/t/t7519-status-fsmonitor.sh+++ b/t/t7519-status-fsmonitor.sh@@ -322,14 +322,14 @@ do rm -f marker && git status >actual && test_path_is_file marker &&- test_i18ngrep ! "Changes not staged for commit:" actual &&+ test_grep ! "Changes not staged for commit:" actual && if test $uc_val = true then- test_i18ngrep ! "Untracked files:" actual+ test_grep ! "Untracked files:" actual fi && if test $uc_val = false then- test_i18ngrep "Untracked files:" actual+ test_grep "Untracked files:" actual fi && rm -f marker '
t/t7520-ignored-hook-warning.sh
+4-4
index 184b258989..3b63c34a30 100755--- a/t/t7520-ignored-hook-warning.sh+++ b/t/t7520-ignored-hook-warning.sh@@ -13,27 +13,27 @@ test_expect_success setup ' test_expect_success 'no warning if hook is not ignored' ' git commit --allow-empty -m "more" 2>message &&- test_i18ngrep ! -e "hook was ignored" message+ test_grep ! -e "hook was ignored" message ' test_expect_success POSIXPERM 'warning if hook is ignored' ' test_hook --disable pre-commit && git commit --allow-empty -m "even more" 2>message &&- test_i18ngrep -e "hook was ignored" message+ test_grep -e "hook was ignored" message ' test_expect_success POSIXPERM 'no warning if advice.ignoredHook set to false' ' test_config advice.ignoredHook false && test_hook --disable pre-commit && git commit --allow-empty -m "even more" 2>message &&- test_i18ngrep ! -e "hook was ignored" message+ test_grep ! -e "hook was ignored" message ' test_expect_success 'no warning if unset advice.ignoredHook and hook removed' ' test_hook --remove pre-commit && test_unconfig advice.ignoredHook && git commit --allow-empty -m "even more" 2>message &&- test_i18ngrep ! -e "hook was ignored" message+ test_grep ! -e "hook was ignored" message ' test_done
t/t7525-status-rename.sh
+27-27
index 22bf5c7e5d..a9210d3a3a 100755--- a/t/t7525-status-rename.sh+++ b/t/t7525-status-rename.sh@@ -21,81 +21,81 @@ test_expect_success 'setup' ' test_expect_success 'status no-options' ' git status >actual &&- test_i18ngrep "renamed:" actual+ test_grep "renamed:" actual ' test_expect_success 'status --no-renames' ' git status --no-renames >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual+ test_grep "deleted:" actual &&+ test_grep "new file:" actual ' test_expect_success 'status.renames inherits from diff.renames false' ' git -c diff.renames=false status >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual+ test_grep "deleted:" actual &&+ test_grep "new file:" actual ' test_expect_success 'status.renames inherits from diff.renames true' ' git -c diff.renames=true status >actual &&- test_i18ngrep "renamed:" actual+ test_grep "renamed:" actual ' test_expect_success 'status.renames overrides diff.renames false' ' git -c diff.renames=true -c status.renames=false status >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual+ test_grep "deleted:" actual &&+ test_grep "new file:" actual ' test_expect_success 'status.renames overrides from diff.renames true' ' git -c diff.renames=false -c status.renames=true status >actual &&- test_i18ngrep "renamed:" actual+ test_grep "renamed:" actual ' test_expect_success 'status status.renames=false' ' git -c status.renames=false status >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual+ test_grep "deleted:" actual &&+ test_grep "new file:" actual ' test_expect_success 'status status.renames=true' ' git -c status.renames=true status >actual &&- test_i18ngrep "renamed:" actual+ test_grep "renamed:" actual ' test_expect_success 'commit honors status.renames=false' ' git -c status.renames=false commit --dry-run >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual+ test_grep "deleted:" actual &&+ test_grep "new file:" actual ' test_expect_success 'commit honors status.renames=true' ' git -c status.renames=true commit --dry-run >actual &&- test_i18ngrep "renamed:" actual+ test_grep "renamed:" actual ' test_expect_success 'status config overridden' ' git -c status.renames=true status --no-renames >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual+ test_grep "deleted:" actual &&+ test_grep "new file:" actual ' test_expect_success 'status score=100%' ' git status -M=100% >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual &&+ test_grep "deleted:" actual &&+ test_grep "new file:" actual && git status --find-renames=100% >actual &&- test_i18ngrep "deleted:" actual &&- test_i18ngrep "new file:" actual+ test_grep "deleted:" actual &&+ test_grep "new file:" actual ' test_expect_success 'status score=01%' ' git status -M=01% >actual &&- test_i18ngrep "renamed:" actual &&+ test_grep "renamed:" actual && git status --find-renames=01% >actual &&- test_i18ngrep "renamed:" actual+ test_grep "renamed:" actual ' test_expect_success 'copies not overridden by find-renames' '@@ -103,12 +103,12 @@ test_expect_success 'copies not overridden by find-renames' ' git add copy && git -c status.renames=copies status -M=01% >actual &&- test_i18ngrep "copied:" actual &&- test_i18ngrep "renamed:" actual &&+ test_grep "copied:" actual &&+ test_grep "renamed:" actual && git -c status.renames=copies status --find-renames=01% >actual &&- test_i18ngrep "copied:" actual &&- test_i18ngrep "renamed:" actual+ test_grep "copied:" actual &&+ test_grep "renamed:" actual ' test_done
t/t7526-commit-pathspec-file.sh
+7-7
index ad011bb9f1..c97c550021 100755--- a/t/t7526-commit-pathspec-file.sh+++ b/t/t7526-commit-pathspec-file.sh@@ -141,25 +141,25 @@ test_expect_success 'error conditions' ' >empty_list && test_must_fail git commit --pathspec-from-file=list --interactive -m "Commit" 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err && test_must_fail git commit --pathspec-from-file=list --patch -m "Commit" 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .--interactive/--patch. cannot be used together" err && test_must_fail git commit --pathspec-from-file=list --all -m "Commit" 2>err &&- test_i18ngrep -e "options .--pathspec-from-file. and .-a. cannot be used together" err &&+ test_grep -e "options .--pathspec-from-file. and .-a. cannot be used together" err && test_must_fail git commit --pathspec-from-file=list -m "Commit" -- fileA.t 2>err &&- test_i18ngrep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err &&+ test_grep -e ".--pathspec-from-file. and pathspec arguments cannot be used together" err && test_must_fail git commit --pathspec-file-nul -m "Commit" 2>err &&- test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err &&+ test_grep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err && test_must_fail git commit --pathspec-from-file=empty_list --include -m "Commit" 2>err &&- test_i18ngrep -e "No paths with --include/--only does not make sense." err &&+ test_grep -e "No paths with --include/--only does not make sense." err && test_must_fail git commit --pathspec-from-file=empty_list --only -m "Commit" 2>err &&- test_i18ngrep -e "No paths with --include/--only does not make sense." err+ test_grep -e "No paths with --include/--only does not make sense." err ' test_done
index f5c90cc22a..84ddb56851 100755--- a/t/t7612-merge-verify-signatures.sh+++ b/t/t7612-merge-verify-signatures.sh@@ -41,54 +41,54 @@ test_expect_success GPG 'create signed commits' ' test_expect_success GPG 'merge unsigned commit with verification' ' test_when_finished "git reset --hard && git checkout initial" && test_must_fail git merge --ff-only --verify-signatures side-unsigned 2>mergeerror &&- test_i18ngrep "does not have a GPG signature" mergeerror+ test_grep "does not have a GPG signature" mergeerror ' test_expect_success GPG 'merge unsigned commit with merge.verifySignatures=true' ' test_when_finished "git reset --hard && git checkout initial" && test_config merge.verifySignatures true && test_must_fail git merge --ff-only side-unsigned 2>mergeerror &&- test_i18ngrep "does not have a GPG signature" mergeerror+ test_grep "does not have a GPG signature" mergeerror ' test_expect_success GPG 'merge commit with bad signature with verification' ' test_when_finished "git reset --hard && git checkout initial" && test_must_fail git merge --ff-only --verify-signatures $(cat forged.commit) 2>mergeerror &&- test_i18ngrep "has a bad GPG signature" mergeerror+ test_grep "has a bad GPG signature" mergeerror ' test_expect_success GPG 'merge commit with bad signature with merge.verifySignatures=true' ' test_when_finished "git reset --hard && git checkout initial" && test_config merge.verifySignatures true && test_must_fail git merge --ff-only $(cat forged.commit) 2>mergeerror &&- test_i18ngrep "has a bad GPG signature" mergeerror+ test_grep "has a bad GPG signature" mergeerror ' test_expect_success GPG 'merge commit with untrusted signature with verification' ' test_when_finished "git reset --hard && git checkout initial" && test_must_fail git merge --ff-only --verify-signatures side-untrusted 2>mergeerror &&- test_i18ngrep "has an untrusted GPG signature" mergeerror+ test_grep "has an untrusted GPG signature" mergeerror ' test_expect_success GPG 'merge commit with untrusted signature with verification and high minTrustLevel' ' test_when_finished "git reset --hard && git checkout initial" && test_config gpg.minTrustLevel marginal && test_must_fail git merge --ff-only --verify-signatures side-untrusted 2>mergeerror &&- test_i18ngrep "has an untrusted GPG signature" mergeerror+ test_grep "has an untrusted GPG signature" mergeerror ' test_expect_success GPG 'merge commit with untrusted signature with verification and low minTrustLevel' ' test_when_finished "git reset --hard && git checkout initial" && test_config gpg.minTrustLevel undefined && git merge --ff-only --verify-signatures side-untrusted >mergeoutput &&- test_i18ngrep "has a good GPG signature" mergeoutput+ test_grep "has a good GPG signature" mergeoutput ' test_expect_success GPG 'merge commit with untrusted signature with merge.verifySignatures=true' ' test_when_finished "git reset --hard && git checkout initial" && test_config merge.verifySignatures true && test_must_fail git merge --ff-only side-untrusted 2>mergeerror &&- test_i18ngrep "has an untrusted GPG signature" mergeerror+ test_grep "has an untrusted GPG signature" mergeerror ' test_expect_success GPG 'merge commit with untrusted signature with merge.verifySignatures=true and minTrustLevel' '@@ -96,20 +96,20 @@ test_expect_success GPG 'merge commit with untrusted signature with merge.verify test_config merge.verifySignatures true && test_config gpg.minTrustLevel marginal && test_must_fail git merge --ff-only side-untrusted 2>mergeerror &&- test_i18ngrep "has an untrusted GPG signature" mergeerror+ test_grep "has an untrusted GPG signature" mergeerror ' test_expect_success GPG 'merge signed commit with verification' ' test_when_finished "git reset --hard && git checkout initial" && git merge --verbose --ff-only --verify-signatures side-signed >mergeoutput &&- test_i18ngrep "has a good GPG signature" mergeoutput+ test_grep "has a good GPG signature" mergeoutput ' test_expect_success GPG 'merge signed commit with merge.verifySignatures=true' ' test_when_finished "git reset --hard && git checkout initial" && test_config merge.verifySignatures true && git merge --verbose --ff-only side-signed >mergeoutput &&- test_i18ngrep "has a good GPG signature" mergeoutput+ test_grep "has a good GPG signature" mergeoutput ' test_expect_success GPG 'merge commit with bad signature without verification' '@@ -133,7 +133,7 @@ test_expect_success GPG 'merge unsigned commit into unborn branch' ' test_when_finished "git checkout initial" && git checkout --orphan unborn && test_must_fail git merge --verify-signatures side-unsigned 2>mergeerror &&- test_i18ngrep "does not have a GPG signature" mergeerror+ test_grep "does not have a GPG signature" mergeerror ' test_done
t/t7703-repack-geometric.sh
+2-2
index 00f28fb558..9fc1626fbf 100755--- a/t/t7703-repack-geometric.sh+++ b/t/t7703-repack-geometric.sh@@ -23,7 +23,7 @@ test_expect_success '--geometric with no packs' ' cd geometric && git repack --write-midx --geometric 2 >out &&- test_i18ngrep "Nothing new to pack" out+ test_grep "Nothing new to pack" out ) '@@ -38,7 +38,7 @@ test_expect_success '--geometric with one pack' ' git repack --geometric 2 >out &&- test_i18ngrep "Nothing new to pack" out+ test_grep "Nothing new to pack" out ) '
t/t7800-difftool.sh
+2-2
index 59d3847bf8..6a36be1e63 100755--- a/t/t7800-difftool.sh+++ b/t/t7800-difftool.sh@@ -28,14 +28,14 @@ prompt_given () test_expect_success 'basic usage requires no repo' ' test_expect_code 129 git difftool -h >output &&- test_i18ngrep ^usage: output &&+ test_grep ^usage: output && # create a ceiling directory to prevent Git from finding a repo mkdir -p not/repo && test_when_finished rm -r not && test_expect_code 129 \ env GIT_CEILING_DIRECTORIES="$(pwd)/not" \ git -C not/repo difftool -h >output &&- test_i18ngrep ^usage: output+ test_grep ^usage: output ' # Create a file on main and change it on branch
t/t7810-grep.sh
+2-2
index 39d6d713ec..bdacb57dcb 100755--- a/t/t7810-grep.sh+++ b/t/t7810-grep.sh@@ -1386,7 +1386,7 @@ test_expect_success 'grep --no-index pattern -- path' ' test_expect_success 'grep --no-index complains of revs' ' test_must_fail git grep --no-index o main -- 2>err &&- test_i18ngrep "cannot be used with revs" err+ test_grep "cannot be used with revs" err ' test_expect_success 'grep --no-index prefers paths to revs' '@@ -1399,7 +1399,7 @@ test_expect_success 'grep --no-index prefers paths to revs' ' test_expect_success 'grep --no-index does not "diagnose" revs' ' test_must_fail git grep --no-index o :1:hello.c 2>err &&- test_i18ngrep ! -i "did you mean" err+ test_grep ! -i "did you mean" err ' cat >expected <<EOF
index d37c83b464..167fe66150 100755--- a/t/t7814-grep-recurse-submodules.sh+++ b/t/t7814-grep-recurse-submodules.sh@@ -348,7 +348,7 @@ test_incompatible_with_recurse_submodules () { test_expect_success "--recurse-submodules and $1 are incompatible" " test_must_fail git grep -e. --recurse-submodules $1 2>actual &&- test_i18ngrep 'not supported with --recurse-submodules' actual+ test_grep 'not supported with --recurse-submodules' actual " }
t/t7816-grep-binary-pattern.sh
+2-2
index fdb2355649..4353be5adb 100755--- a/t/t7816-grep-binary-pattern.sh+++ b/t/t7816-grep-binary-pattern.sh@@ -26,7 +26,7 @@ nul_match_internal () { >stderr && printf '$pattern' | q_to_nul >f && test_must_fail env LC_ALL=\"$lc_all\" git grep $extra_flags -f f $flags a 2>stderr &&- test_i18ngrep ! 'This is only supported with -P under PCRE v2' stderr+ test_grep ! 'This is only supported with -P under PCRE v2' stderr " elif test "$matches" = P then@@ -34,7 +34,7 @@ nul_match_internal () { >stderr && printf '$pattern' | q_to_nul >f && test_must_fail env LC_ALL=\"$lc_all\" git grep -f f $flags a 2>stderr &&- test_i18ngrep 'This is only supported with -P under PCRE v2' stderr+ test_grep 'This is only supported with -P under PCRE v2' stderr " else test_expect_success "PANIC: Test framework error. Unknown matches value $matches" 'false'
index 8bcd39e81b..731265541a 100755--- a/t/t8003-blame-corner-cases.sh+++ b/t/t8003-blame-corner-cases.sh@@ -207,7 +207,7 @@ EOF test_expect_success 'blame -L with invalid start' ' test_must_fail git blame -L5 tres 2>errors &&- test_i18ngrep "has only 2 lines" errors+ test_grep "has only 2 lines" errors ' test_expect_success 'blame -L with invalid end' '
t/t8013-blame-ignore-revs.sh
+3-3
index b18633dee1..9a03b0f361 100755--- a/t/t8013-blame-ignore-revs.sh+++ b/t/t8013-blame-ignore-revs.sh@@ -129,14 +129,14 @@ test_expect_success override_ignore_revs_file ' ' test_expect_success bad_files_and_revs ' test_must_fail git blame file --ignore-rev NOREV 2>err &&- test_i18ngrep "cannot find revision NOREV to ignore" err &&+ test_grep "cannot find revision NOREV to ignore" err && test_must_fail git blame file --ignore-revs-file NOFILE 2>err &&- test_i18ngrep "could not open.*: NOFILE" err &&+ test_grep "could not open.*: NOFILE" err && echo NOREV >ignore_norev && test_must_fail git blame file --ignore-revs-file ignore_norev 2>err &&- test_i18ngrep "invalid object name: NOREV" err+ test_grep "invalid object name: NOREV" err ' # For ignored revs that have added 'unblamable' lines, mark those lines with a
t/t9001-send-email.sh
+4-4
index a60b05ad3f..5307947db8 100755--- a/t/t9001-send-email.sh+++ b/t/t9001-send-email.sh@@ -371,7 +371,7 @@ test_expect_success $PREREQ,!AUTOIDENT 'broken implicit ident aborts send-email' --smtp-server="$(pwd)/fake.sendmail" \ --to=to@example.com \ $patches </dev/null 2>errors &&- test_i18ngrep "tell me who you are" errors+ test_grep "tell me who you are" errors ) '@@ -2062,7 +2062,7 @@ test_expect_success $PREREQ 'aliases and sendemail.identity' ' -c sendemail.aliasesfile=default-aliases \ -c sendemail.cloud.aliasesfile=cloud-aliases \ send-email -1 2>stderr &&- test_i18ngrep "cloud-aliases" stderr+ test_grep "cloud-aliases" stderr ' test_sendmail_aliases () {@@ -2427,7 +2427,7 @@ test_expect_success $PREREQ 'invoke hook' ' --to=nobody@example.com \ --smtp-server="$(pwd)/../fake.sendmail" \ ../another.patch 2>err &&- test_i18ngrep "rejected by sendemail-validate hook" err+ test_grep "rejected by sendemail-validate hook" err ) '@@ -2483,7 +2483,7 @@ test_expect_success $PREREQ 'test that sendmail config is rejected' ' --to=nobody@example.com \ --smtp-server="$(pwd)/fake.sendmail" \ HEAD^ 2>err &&- test_i18ngrep "found configuration options for '"'"sendmail"'"'" err+ test_grep "found configuration options for '"'"sendmail"'"'" err ' test_expect_success $PREREQ 'test that sendmail config rejection is specific' '
t/t9300-fast-import.sh
+13-13
index ac237a1f90..dbb5042b0b 100755--- a/t/t9300-fast-import.sh+++ b/t/t9300-fast-import.sh@@ -2879,7 +2879,7 @@ test_expect_success 'S: filemodify with garbage after mark must fail' ' COMMIT M 100644 :403x hello.c EOF- test_i18ngrep "space after mark" err+ test_grep "space after mark" err ' # inline is misspelled; fast-import thinks it is some unknown dataref@@ -2895,7 +2895,7 @@ test_expect_success 'S: filemodify with garbage after inline must fail' ' inline BLOB EOF- test_i18ngrep "nvalid dataref" err+ test_grep "nvalid dataref" err ' test_expect_success 'S: filemodify with garbage after sha1 must fail' '@@ -2908,7 +2908,7 @@ test_expect_success 'S: filemodify with garbage after sha1 must fail' ' COMMIT M 100644 ${sha1}x hello.c EOF- test_i18ngrep "space after SHA1" err+ test_grep "space after SHA1" err ' #@@ -2923,7 +2923,7 @@ test_expect_success 'S: notemodify with garbage after mark dataref must fail' ' COMMIT N :202x :302 EOF- test_i18ngrep "space after mark" err+ test_grep "space after mark" err ' test_expect_success 'S: notemodify with garbage after inline dataref must fail' '@@ -2938,7 +2938,7 @@ test_expect_success 'S: notemodify with garbage after inline dataref must fail' note blob BLOB EOF- test_i18ngrep "nvalid dataref" err+ test_grep "nvalid dataref" err ' test_expect_success 'S: notemodify with garbage after sha1 dataref must fail' '@@ -2951,7 +2951,7 @@ test_expect_success 'S: notemodify with garbage after sha1 dataref must fail' ' COMMIT N ${sha1}x :302 EOF- test_i18ngrep "space after SHA1" err+ test_grep "space after SHA1" err ' #@@ -2966,7 +2966,7 @@ test_expect_success 'S: notemodify with garbage after mark commit-ish must fail' COMMIT N :202 :302x EOF- test_i18ngrep "after mark" err+ test_grep "after mark" err ' #@@ -2999,7 +2999,7 @@ test_expect_success 'S: from with garbage after mark must fail' ' EOF # now evaluate the error- test_i18ngrep "after mark" err+ test_grep "after mark" err '@@ -3018,7 +3018,7 @@ test_expect_success 'S: merge with garbage after mark must fail' ' merge :303x M 100644 :403 hello.c EOF- test_i18ngrep "after mark" err+ test_grep "after mark" err ' #@@ -3033,7 +3033,7 @@ test_expect_success 'S: tag with garbage after mark must fail' ' tag S TAG EOF- test_i18ngrep "after mark" err+ test_grep "after mark" err ' #@@ -3043,7 +3043,7 @@ test_expect_success 'S: cat-blob with garbage after mark must fail' ' test_must_fail git fast-import --import-marks=marks <<-EOF 2>err && cat-blob :403x EOF- test_i18ngrep "after mark" err+ test_grep "after mark" err ' #@@ -3053,7 +3053,7 @@ test_expect_success 'S: ls with garbage after mark must fail' ' test_must_fail git fast-import --import-marks=marks <<-EOF 2>err && ls :302x hello.c EOF- test_i18ngrep "space after mark" err+ test_grep "space after mark" err ' test_expect_success 'S: ls with garbage after sha1 must fail' '@@ -3061,7 +3061,7 @@ test_expect_success 'S: ls with garbage after sha1 must fail' ' test_must_fail git fast-import --import-marks=marks <<-EOF 2>err && ls ${sha1}x hello.c EOF- test_i18ngrep "space after tree-ish" err+ test_grep "space after tree-ish" err ' ###
t/t9800-git-p4-basic.sh
+9-9
index a4b3cb9492..53af8e34ac 100755--- a/t/t9800-git-p4-basic.sh+++ b/t/t9800-git-p4-basic.sh@@ -54,7 +54,7 @@ test_expect_success 'git p4 sync uninitialized repo' ' ( cd "$git" && test_must_fail git p4 sync 2>errs &&- test_i18ngrep "Perhaps you never did" errs+ test_grep "Perhaps you never did" errs ) '@@ -86,7 +86,7 @@ test_expect_success 'git p4 sync existing branch without changes' ' test_commit head && git p4 sync --branch=depot //depot@all && git p4 sync --branch=refs/remotes/p4/depot >out &&- test_i18ngrep "No changes to import!" out+ test_grep "No changes to import!" out ) '@@ -101,7 +101,7 @@ test_expect_success 'git p4 sync existing branch with relative name' ' test_commit head && git p4 sync --branch=branch1 //depot@all && git p4 sync --branch=p4/branch1 >out &&- test_i18ngrep "No changes to import!" out+ test_grep "No changes to import!" out ) '@@ -116,7 +116,7 @@ test_expect_success 'git p4 sync existing branch with nested path' ' test_commit head && git p4 sync --branch=p4/some/path //depot@all && git p4 sync --branch=some/path >out &&- test_i18ngrep "No changes to import!" out+ test_grep "No changes to import!" out ) '@@ -131,7 +131,7 @@ test_expect_success 'git p4 sync branch explicit ref without p4 in path' ' test_commit head && git p4 sync --branch=refs/remotes/someremote/depot //depot@all && git p4 sync --branch=refs/remotes/someremote/depot >out &&- test_i18ngrep "No changes to import!" out+ test_grep "No changes to import!" out ) '@@ -143,7 +143,7 @@ test_expect_success 'git p4 sync nonexistent ref' ' test_commit head && git p4 sync --branch=depot //depot@all && test_must_fail git p4 sync --branch=depot2 2>errs &&- test_i18ngrep "Perhaps you never did" errs+ test_grep "Perhaps you never did" errs ) '@@ -155,7 +155,7 @@ test_expect_success 'git p4 sync existing non-p4-imported ref' ' test_commit head && git p4 sync --branch=depot //depot@all && test_must_fail git p4 sync --branch=refs/heads/master 2>errs &&- test_i18ngrep "Perhaps you never did" errs+ test_grep "Perhaps you never did" errs ) '@@ -290,7 +290,7 @@ test_expect_success 'exit when p4 fails to produce marshaled output' ' export PATH && test_expect_code 1 git p4 clone --dest="$git" //depot >errs 2>&1 ) &&- test_i18ngrep ! Traceback errs+ test_grep ! Traceback errs ' # Hide a file from p4d, make sure we catch its complaint. This won't fail in@@ -301,7 +301,7 @@ test_expect_success 'exit gracefully for p4 server errors' ' mv "$db"/depot/file1,v "$db"/depot/file1,v,hidden && test_when_finished cleanup_git && test_expect_code 1 git p4 clone --dest="$git" //depot@1 >out 2>err &&- test_i18ngrep "Error from p4 print" err+ test_grep "Error from p4 print" err ' test_expect_success 'clone --bare should make a bare repository' '
t/t9801-git-p4-branch.sh
+1-1
index 759a14fa87..73cca0d143 100755--- a/t/t9801-git-p4-branch.sh+++ b/t/t9801-git-p4-branch.sh@@ -135,7 +135,7 @@ test_expect_success 'sync specific detected branch' ' ( cd "$git" && git p4 sync --branch=depot/branch2 >out &&- test_i18ngrep "No changes to import!" out+ test_grep "No changes to import!" out ) '
t/t9807-git-p4-submit.sh
+6-6
index 7d4109f29d..af4b286f9d 100755--- a/t/t9807-git-p4-submit.sh+++ b/t/t9807-git-p4-submit.sh@@ -75,7 +75,7 @@ test_expect_success 'submit --dry-run' ' test_commit "dry-run1" && test_commit "dry-run2" && git p4 submit --dry-run >out &&- test_i18ngrep "Would apply" out+ test_grep "Would apply" out ) && ( cd "$cli" &&@@ -99,7 +99,7 @@ test_expect_success 'submit --dry-run --export-labels' ' git commit -m "dry-run2" dry-run2 && git tag -m "dry-run-tag1" dry-run-tag1 HEAD^ && git p4 submit --dry-run --export-labels >out &&- test_i18ngrep "Would create p4 label" out+ test_grep "Would create p4 label" out ) && ( cd "$cli" &&@@ -443,7 +443,7 @@ test_expect_success 'description with Jobs section and bogus following text' ' # build a job make_job $(cat jobname) && test_must_fail git p4 submit 2>err &&- test_i18ngrep "Unknown field name" err+ test_grep "Unknown field name" err ) && ( cd "$cli" &&@@ -461,9 +461,9 @@ test_expect_success 'submit --prepare-p4-only' ' git add prep-only-add && git commit -m "prep only add" && git p4 submit --prepare-p4-only >out &&- test_i18ngrep "prepared for submission" out &&- test_i18ngrep "must be deleted" out &&- test_i18ngrep ! "everything below this line is just the diff" out+ test_grep "prepared for submission" out &&+ test_grep "must be deleted" out &&+ test_grep ! "everything below this line is just the diff" out ) && ( cd "$cli" &&
t/t9815-git-p4-submit-fail.sh
+6-6
index 0ca9937de6..c766fd159f 100755--- a/t/t9815-git-p4-submit-fail.sh+++ b/t/t9815-git-p4-submit-fail.sh@@ -35,7 +35,7 @@ test_expect_success 'conflict on one commit' ' git add file1 && git commit -m "line3 in file1 will conflict" && test_expect_code 1 git p4 submit >out &&- test_i18ngrep "No commits applied" out+ test_grep "No commits applied" out ) '@@ -58,7 +58,7 @@ test_expect_success 'conflict on second of two commits' ' git add file1 && git commit -m "line4 in file1 will conflict" && test_expect_code 1 git p4 submit >out &&- test_i18ngrep "Applied only the commits" out+ test_grep "Applied only the commits" out ) '@@ -81,7 +81,7 @@ test_expect_success 'conflict on first of two commits, skip' ' # but this commit is okay test_commit "okay_commit_after_skip" && echo s | test_expect_code 1 git p4 submit >out &&- test_i18ngrep "Applied only the commits" out+ test_grep "Applied only the commits" out ) '@@ -104,7 +104,7 @@ test_expect_success 'conflict on first of two commits, quit' ' # but this commit is okay test_commit "okay_commit_after_quit" && echo q | test_expect_code 1 git p4 submit >out &&- test_i18ngrep "No commits applied" out+ test_grep "No commits applied" out ) '@@ -144,7 +144,7 @@ test_expect_success 'conflict on first of two commits, --conflict=skip' ' # but this commit is okay test_commit "okay_commit_after_auto_skip" && test_expect_code 1 git p4 submit --conflict=skip >out &&- test_i18ngrep "Applied only the commits" out+ test_grep "Applied only the commits" out ) '@@ -167,7 +167,7 @@ test_expect_success 'conflict on first of two commits, --conflict=quit' ' # but this commit is okay test_commit "okay_commit_after_auto_quit" && test_expect_code 1 git p4 submit --conflict=quit >out &&- test_i18ngrep "No commits applied" out+ test_grep "No commits applied" out ) '