Merge branch 'nd/i18n-poison-test-updates'

Update tests that can be broken with gettext-poison builds.

* nd/i18n-poison-test-updates:
  Fix tests under GETTEXT_POISON on parseopt
  Fix tests under GETTEXT_POISON on git-remote
  Fix tests under GETTEXT_POISON on pack-object
  Fix tests under GETTEXT_POISON on git-apply
  Fix tests under GETTEXT_POISON on diffstat
  Fix tests under GETTEXT_POISON on git-stash
  Fix tests under GETTEXT_POISON on relative dates
This commit is contained in:
Junio C Hamano 2012-09-07 11:07:59 -07:00
commit bdac578482
23 changed files with 83 additions and 53 deletions

View file

@ -11,7 +11,7 @@ check_show() {
echo "$t -> $2" >expect echo "$t -> $2" >expect
test_expect_${3:-success} "relative date ($2)" " test_expect_${3:-success} "relative date ($2)" "
test-date show $t >actual && test-date show $t >actual &&
test_cmp expect actual test_i18ncmp expect actual
" "
} }

View file

@ -51,7 +51,7 @@ EOF
test_expect_success 'test help' ' test_expect_success 'test help' '
test_must_fail test-parse-options -h > output 2> output.err && test_must_fail test-parse-options -h > output 2> output.err &&
test ! -s output.err && test ! -s output.err &&
test_cmp expect output test_i18ncmp expect output
' '
mv expect expect.err mv expect expect.err
@ -79,6 +79,17 @@ check() {
test_cmp expect output test_cmp expect output
} }
check_i18n() {
what="$1" &&
shift &&
expect="$1" &&
shift &&
sed "s/^$what .*/$what $expect/" <expect.template >expect &&
test-parse-options $* >output 2>output.err &&
test ! -s output.err &&
test_i18ncmp expect output
}
check_unknown() { check_unknown() {
case "$1" in case "$1" in
--*) --*)
@ -92,6 +103,19 @@ check_unknown() {
test_cmp expect output.err test_cmp expect output.err
} }
check_unknown_i18n() {
case "$1" in
--*)
echo error: unknown option \`${1#--}\' >expect ;;
-*)
echo error: unknown switch \`${1#-}\' >expect ;;
esac &&
cat expect.err >>expect &&
test_must_fail test-parse-options $* >output 2>output.err &&
test ! -s output &&
test_i18ncmp expect output.err
}
test_expect_success 'OPT_BOOL() #1' 'check boolean: 1 --yes' test_expect_success 'OPT_BOOL() #1' 'check boolean: 1 --yes'
test_expect_success 'OPT_BOOL() #2' 'check boolean: 1 --no-doubt' test_expect_success 'OPT_BOOL() #2' 'check boolean: 1 --no-doubt'
test_expect_success 'OPT_BOOL() #3' 'check boolean: 1 -D' test_expect_success 'OPT_BOOL() #3' 'check boolean: 1 -D'
@ -104,8 +128,8 @@ test_expect_success 'OPT_BOOL() is idempotent #2' 'check boolean: 1 -DB'
test_expect_success 'OPT_BOOL() negation #1' 'check boolean: 0 -D --no-yes' test_expect_success 'OPT_BOOL() negation #1' 'check boolean: 0 -D --no-yes'
test_expect_success 'OPT_BOOL() negation #2' 'check boolean: 0 -D --no-no-doubt' test_expect_success 'OPT_BOOL() negation #2' 'check boolean: 0 -D --no-no-doubt'
test_expect_success 'OPT_BOOL() no negation #1' 'check_unknown --fear' test_expect_success 'OPT_BOOL() no negation #1' 'check_unknown_i18n --fear'
test_expect_success 'OPT_BOOL() no negation #2' 'check_unknown --no-no-fear' test_expect_success 'OPT_BOOL() no negation #2' 'check_unknown_i18n --no-no-fear'
test_expect_success 'OPT_BOOL() positivation' 'check boolean: 0 -D --doubt' test_expect_success 'OPT_BOOL() positivation' 'check boolean: 0 -D --doubt'
@ -310,8 +334,8 @@ EOF
test_expect_success 'OPT_CALLBACK() and callback errors work' ' test_expect_success 'OPT_CALLBACK() and callback errors work' '
test_must_fail test-parse-options --no-length > output 2> output.err && test_must_fail test-parse-options --no-length > output 2> output.err &&
test_cmp expect output && test_i18ncmp expect output &&
test_cmp expect.err output.err test_i18ncmp expect.err output.err
' '
cat > expect <<EOF cat > expect <<EOF

View file

@ -391,7 +391,7 @@ test_expect_success 'get bool variable with empty value' \
test_expect_success 'no arguments, but no crash' ' test_expect_success 'no arguments, but no crash' '
test_must_fail git config >output 2>&1 && test_must_fail git config >output 2>&1 &&
grep usage output test_i18ngrep usage output
' '
cat > .git/config << EOF cat > .git/config << EOF

View file

@ -41,7 +41,7 @@ EOF
test_expect_success 'test --parseopt help output' ' test_expect_success 'test --parseopt help output' '
test_expect_code 129 git rev-parse --parseopt -- -h > output < optionspec && test_expect_code 129 git rev-parse --parseopt -- -h > output < optionspec &&
test_cmp expect output test_i18ncmp expect output
' '
cat > expect <<EOF cat > expect <<EOF

View file

@ -7,7 +7,7 @@ test_description='basic checkout-index tests
test_expect_success 'checkout-index --gobbledegook' ' test_expect_success 'checkout-index --gobbledegook' '
test_expect_code 129 git checkout-index --gobbledegook 2>err && test_expect_code 129 git checkout-index --gobbledegook 2>err &&
grep "[Uu]sage" err test_i18ngrep "[Uu]sage" err
' '
test_expect_success 'checkout-index -h in broken repository' ' test_expect_success 'checkout-index -h in broken repository' '
@ -18,7 +18,7 @@ test_expect_success 'checkout-index -h in broken repository' '
>.git/index && >.git/index &&
test_expect_code 129 git checkout-index -h >usage 2>&1 test_expect_code 129 git checkout-index -h >usage 2>&1
) && ) &&
grep "[Uu]sage" broken/usage test_i18ngrep "[Uu]sage" broken/usage
' '
test_done test_done

View file

@ -15,7 +15,7 @@ test_expect_success 'update-index --nonsense fails' '
test_expect_success 'update-index --nonsense dumps usage' ' test_expect_success 'update-index --nonsense dumps usage' '
test_expect_code 129 git update-index --nonsense 2>err && test_expect_code 129 git update-index --nonsense 2>err &&
grep "[Uu]sage: git update-index" err test_i18ngrep "[Uu]sage: git update-index" err
' '
test_expect_success 'update-index -h with corrupt index' ' test_expect_success 'update-index -h with corrupt index' '
@ -26,7 +26,7 @@ test_expect_success 'update-index -h with corrupt index' '
>.git/index && >.git/index &&
test_expect_code 129 git update-index -h >usage 2>&1 test_expect_code 129 git update-index -h >usage 2>&1
) && ) &&
grep "[Uu]sage: git update-index" broken/usage test_i18ngrep "[Uu]sage: git update-index" broken/usage
' '
test_expect_success '--cacheinfo does not accept blob null sha1' ' test_expect_success '--cacheinfo does not accept blob null sha1' '

View file

@ -22,7 +22,7 @@ test_expect_success 'ls-files with nonexistent path' '
test_expect_success 'ls-files with nonsense option' ' test_expect_success 'ls-files with nonsense option' '
test_expect_code 129 git ls-files --nonsense 2>actual && test_expect_code 129 git ls-files --nonsense 2>actual &&
grep "[Uu]sage: git ls-files" actual test_i18ngrep "[Uu]sage: git ls-files" actual
' '
test_expect_success 'ls-files -h in corrupt repository' ' test_expect_success 'ls-files -h in corrupt repository' '
@ -33,7 +33,7 @@ test_expect_success 'ls-files -h in corrupt repository' '
>.git/index && >.git/index &&
test_expect_code 129 git ls-files -h >usage 2>&1 test_expect_code 129 git ls-files -h >usage 2>&1
) && ) &&
grep "[Uu]sage: git ls-files " broken/usage test_i18ngrep "[Uu]sage: git ls-files " broken/usage
' '
test_done test_done

View file

@ -31,7 +31,7 @@ test_expect_success 'branch -h in broken repository' '
>.git/refs/heads/master && >.git/refs/heads/master &&
test_expect_code 129 git branch -h >usage 2>&1 test_expect_code 129 git branch -h >usage 2>&1
) && ) &&
grep "[Uu]sage" broken/usage test_i18ngrep "[Uu]sage" broken/usage
' '
test_expect_success \ test_expect_success \
@ -74,7 +74,7 @@ test_expect_success \
test_expect_success \ test_expect_success \
'git branch -m dumps usage' \ 'git branch -m dumps usage' \
'test_expect_code 129 git branch -m 2>err && 'test_expect_code 129 git branch -m 2>err &&
grep "[Uu]sage: git branch" err' test_i18ngrep "[Uu]sage: git branch" err'
test_expect_success \ test_expect_success \
'git branch -m m m/m should work' \ 'git branch -m m m/m should work' \

View file

@ -47,7 +47,7 @@ test_expect_success 'cherry-pick --nonsense' '
git diff --exit-code HEAD && git diff --exit-code HEAD &&
test_must_fail git cherry-pick --nonsense 2>msg && test_must_fail git cherry-pick --nonsense 2>msg &&
git diff --exit-code HEAD "$pos" && git diff --exit-code HEAD "$pos" &&
grep '[Uu]sage:' msg test_i18ngrep '[Uu]sage:' msg
' '
test_expect_success 'revert --nonsense' ' test_expect_success 'revert --nonsense' '
@ -56,7 +56,7 @@ test_expect_success 'revert --nonsense' '
git diff --exit-code HEAD && git diff --exit-code HEAD &&
test_must_fail git revert --nonsense 2>msg && test_must_fail git revert --nonsense 2>msg &&
git diff --exit-code HEAD "$pos" && git diff --exit-code HEAD "$pos" &&
grep '[Uu]sage:' msg test_i18ngrep '[Uu]sage:' msg
' '
test_expect_success 'cherry-pick after renaming branch' ' test_expect_success 'cherry-pick after renaming branch' '

View file

@ -610,7 +610,7 @@ test_expect_success 'stash apply shows status same as git status (relative to cu
git stash apply git stash apply
) | ) |
sed -e 1,2d >actual && # drop "Saved..." and "HEAD is now..." sed -e 1,2d >actual && # drop "Saved..." and "HEAD is now..."
test_cmp expect actual test_i18ncmp expect actual
' '
cat > expect << EOF cat > expect << EOF

View file

@ -36,24 +36,24 @@ test_expect_success '--stat output after text chmod' '
test_chmod -x rezrov && test_chmod -x rezrov &&
echo " 0 files changed" >expect && echo " 0 files changed" >expect &&
git diff HEAD --stat >actual && git diff HEAD --stat >actual &&
test_cmp expect actual test_i18ncmp expect actual
' '
test_expect_success '--shortstat output after text chmod' ' test_expect_success '--shortstat output after text chmod' '
git diff HEAD --shortstat >actual && git diff HEAD --shortstat >actual &&
test_cmp expect actual test_i18ncmp expect actual
' '
test_expect_success '--stat output after binary chmod' ' test_expect_success '--stat output after binary chmod' '
test_chmod +x binbin && test_chmod +x binbin &&
echo " 0 files changed" >expect && echo " 0 files changed" >expect &&
git diff HEAD --stat >actual && git diff HEAD --stat >actual &&
test_cmp expect actual test_i18ncmp expect actual
' '
test_expect_success '--shortstat output after binary chmod' ' test_expect_success '--shortstat output after binary chmod' '
git diff HEAD --shortstat >actual && git diff HEAD --shortstat >actual &&
test_cmp expect actual test_i18ncmp expect actual
' '
test_done test_done

View file

@ -63,7 +63,7 @@ test_expect_success 'apply --numstat understands diff --binary format' '
# apply needs to be able to skip the binary material correctly # apply needs to be able to skip the binary material correctly
# in order to report the line number of a corrupt patch. # in order to report the line number of a corrupt patch.
test_expect_success 'apply detecting corrupt patch correctly' ' test_expect_success C_LOCALE_OUTPUT 'apply detecting corrupt patch correctly' '
git diff >output && git diff >output &&
sed -e "s/-CIT/xCIT/" <output >broken && sed -e "s/-CIT/xCIT/" <output >broken &&
test_must_fail git apply --stat --summary broken 2>detected && test_must_fail git apply --stat --summary broken 2>detected &&
@ -73,7 +73,7 @@ test_expect_success 'apply detecting corrupt patch correctly' '
test "$detected" = xCIT test "$detected" = xCIT
' '
test_expect_success 'apply detecting corrupt patch correctly' ' test_expect_success C_LOCALE_OUTPUT 'apply detecting corrupt patch correctly' '
git diff --binary | sed -e "s/-CIT/xCIT/" >broken && git diff --binary | sed -e "s/-CIT/xCIT/" >broken &&
test_must_fail git apply --stat --summary broken 2>detected && test_must_fail git apply --stat --summary broken 2>detected &&
detected=`cat detected` && detected=`cat detected` &&

View file

@ -32,7 +32,7 @@ test_expect_success 'apply git diff with -p2' '
test_expect_success 'apply with too large -p' ' test_expect_success 'apply with too large -p' '
cp file1.saved file1 && cp file1.saved file1 &&
test_must_fail git apply --stat -p3 patch.file 2>err && test_must_fail git apply --stat -p3 patch.file 2>err &&
grep "removing 3 leading" err test_i18ngrep "removing 3 leading" err
' '
test_expect_success 'apply (-p2) traditional diff with funny filenames' ' test_expect_success 'apply (-p2) traditional diff with funny filenames' '
@ -54,7 +54,7 @@ test_expect_success 'apply (-p2) traditional diff with funny filenames' '
test_expect_success 'apply with too large -p and fancy filename' ' test_expect_success 'apply with too large -p and fancy filename' '
cp file1.saved file1 && cp file1.saved file1 &&
test_must_fail git apply --stat -p3 patch.escaped 2>err && test_must_fail git apply --stat -p3 patch.escaped 2>err &&
grep "removing 3 leading" err test_i18ngrep "removing 3 leading" err
' '
test_expect_success 'apply (-p2) diff, mode change only' ' test_expect_success 'apply (-p2) diff, mode change only' '

View file

@ -30,9 +30,9 @@ EOF
test_expect_success 'apply diff with inconsistent filenames in headers' ' test_expect_success 'apply diff with inconsistent filenames in headers' '
test_must_fail git apply bad1.patch 2>err && test_must_fail git apply bad1.patch 2>err &&
grep "inconsistent new filename" err && test_i18ngrep "inconsistent new filename" err &&
test_must_fail git apply bad2.patch 2>err && test_must_fail git apply bad2.patch 2>err &&
grep "inconsistent old filename" err test_i18ngrep "inconsistent old filename" err
' '
test_done test_done

View file

@ -382,13 +382,13 @@ test_expect_success 'rerere --no-no-rerere-autoupdate' '
git update-index --index-info <failedmerge && git update-index --index-info <failedmerge &&
cp file3.conflict file3 && cp file3.conflict file3 &&
test_must_fail git rerere --no-no-rerere-autoupdate 2>err && test_must_fail git rerere --no-no-rerere-autoupdate 2>err &&
grep [Uu]sage err && test_i18ngrep [Uu]sage err &&
test_must_fail git update-index --refresh test_must_fail git update-index --refresh
' '
test_expect_success 'rerere -h' ' test_expect_success 'rerere -h' '
test_must_fail git rerere -h >help && test_must_fail git rerere -h >help &&
grep [Uu]sage help test_i18ngrep [Uu]sage help
' '
test_done test_done

View file

@ -803,7 +803,7 @@ sanitize_output () {
test_expect_success 'log --graph with diff and stats' ' test_expect_success 'log --graph with diff and stats' '
git log --graph --pretty=short --stat -p >actual && git log --graph --pretty=short --stat -p >actual &&
sanitize_output >actual.sanitized <actual && sanitize_output >actual.sanitized <actual &&
test_cmp expect actual.sanitized test_i18ncmp expect actual.sanitized
' '
test_done test_done

View file

@ -88,7 +88,7 @@ test_expect_success 'NUL separation with --stat' '
stat1_part=$(git diff --stat --root HEAD^) && stat1_part=$(git diff --stat --root HEAD^) &&
printf "add bar\n$stat0_part\n\0initial\n$stat1_part\n" >expected && printf "add bar\n$stat0_part\n\0initial\n$stat1_part\n" >expected &&
git log -z --stat --pretty="format:%s" >actual && git log -z --stat --pretty="format:%s" >actual &&
test_cmp expected actual test_i18ncmp expected actual
' '
test_expect_failure 'NUL termination with --stat' ' test_expect_failure 'NUL termination with --stat' '
@ -96,7 +96,7 @@ test_expect_failure 'NUL termination with --stat' '
stat1_part=$(git diff --stat --root HEAD^) && stat1_part=$(git diff --stat --root HEAD^) &&
printf "add bar\n$stat0_part\n\0initial\n$stat1_part\n\0" >expected && printf "add bar\n$stat0_part\n\0initial\n$stat1_part\n\0" >expected &&
git log -z --stat --pretty="tformat:%s" >actual && git log -z --stat --pretty="tformat:%s" >actual &&
test_cmp expected actual test_i18ncmp expected actual
' '
test_done test_done

View file

@ -416,11 +416,11 @@ test_expect_success \
test_expect_success \ test_expect_success \
'make sure index-pack detects the SHA1 collision' \ 'make sure index-pack detects the SHA1 collision' \
'test_must_fail git index-pack -o bad.idx test-3.pack 2>msg && 'test_must_fail git index-pack -o bad.idx test-3.pack 2>msg &&
grep "SHA1 COLLISION FOUND" msg' test_i18ngrep "SHA1 COLLISION FOUND" msg'
test_expect_success \ test_expect_success \
'make sure index-pack detects the SHA1 collision (large blobs)' \ 'make sure index-pack detects the SHA1 collision (large blobs)' \
'test_must_fail git -c core.bigfilethreshold=1 index-pack -o bad.idx test-3.pack 2>msg && 'test_must_fail git -c core.bigfilethreshold=1 index-pack -o bad.idx test-3.pack 2>msg &&
grep "SHA1 COLLISION FOUND" msg' test_i18ngrep "SHA1 COLLISION FOUND" msg'
test_done test_done

View file

@ -52,7 +52,7 @@ test_expect_success setup '
' '
test_expect_success 'remote information for the origin' ' test_expect_success C_LOCALE_OUTPUT 'remote information for the origin' '
( (
cd test && cd test &&
tokens_match origin "$(git remote)" && tokens_match origin "$(git remote)" &&
@ -66,8 +66,6 @@ test_expect_success 'add another remote' '
cd test && cd test &&
git remote add -f second ../two && git remote add -f second ../two &&
tokens_match "origin second" "$(git remote)" && tokens_match "origin second" "$(git remote)" &&
check_remote_track origin master side &&
check_remote_track second master side another &&
check_tracking_branch second master side another && check_tracking_branch second master side another &&
git for-each-ref "--format=%(refname)" refs/remotes | git for-each-ref "--format=%(refname)" refs/remotes |
sed -e "/^refs\/remotes\/origin\//d" \ sed -e "/^refs\/remotes\/origin\//d" \
@ -77,6 +75,14 @@ test_expect_success 'add another remote' '
) )
' '
test_expect_success C_LOCALE_OUTPUT 'check remote tracking' '
(
cd test &&
check_remote_track origin master side &&
check_remote_track second master side another
)
'
test_expect_success 'remote forces tracking branches' ' test_expect_success 'remote forces tracking branches' '
( (
cd test && cd test &&
@ -95,7 +101,7 @@ test_expect_success 'remove remote' '
) )
' '
test_expect_success 'remove remote' ' test_expect_success C_LOCALE_OUTPUT 'remove remote' '
( (
cd test && cd test &&
tokens_match origin "$(git remote)" && tokens_match origin "$(git remote)" &&
@ -131,8 +137,8 @@ EOF
git remote rm oops 2>actual2 && git remote rm oops 2>actual2 &&
git branch -d foobranch && git branch -d foobranch &&
git tag -d footag && git tag -d footag &&
test_cmp expect1 actual1 && test_i18ncmp expect1 actual1 &&
test_cmp expect2 actual2 test_i18ncmp expect2 actual2
) )
' '
@ -192,7 +198,7 @@ test_expect_success 'show' '
git config --add remote.two.push refs/heads/master:refs/heads/another && git config --add remote.two.push refs/heads/master:refs/heads/another &&
git remote show origin two > output && git remote show origin two > output &&
git branch -d rebase octopus && git branch -d rebase octopus &&
test_cmp expect output) test_i18ncmp expect output)
' '
cat > test/expect << EOF cat > test/expect << EOF
@ -217,7 +223,7 @@ test_expect_success 'show -n' '
cd test && cd test &&
git remote show -n origin > output && git remote show -n origin > output &&
mv ../one.unreachable ../one && mv ../one.unreachable ../one &&
test_cmp expect output) test_i18ncmp expect output)
' '
test_expect_success 'prune' ' test_expect_success 'prune' '
@ -255,7 +261,7 @@ EOF
test_expect_success 'set-head --auto fails w/multiple HEADs' ' test_expect_success 'set-head --auto fails w/multiple HEADs' '
(cd test && (cd test &&
test_must_fail git remote set-head --auto two >output 2>&1 && test_must_fail git remote set-head --auto two >output 2>&1 &&
test_cmp expect output) test_i18ncmp expect output)
' '
cat >test/expect <<EOF cat >test/expect <<EOF
@ -285,7 +291,7 @@ test_expect_success 'prune --dry-run' '
test_must_fail git rev-parse refs/remotes/origin/side && test_must_fail git rev-parse refs/remotes/origin/side &&
(cd ../one && (cd ../one &&
git branch -m side side2) && git branch -m side side2) &&
test_cmp expect output) test_i18ncmp expect output)
' '
test_expect_success 'add --mirror && prune' ' test_expect_success 'add --mirror && prune' '
@ -705,7 +711,7 @@ test_expect_success 'remote prune to cause a dangling symref' '
cd seven && cd seven &&
git remote prune origin git remote prune origin
) >err 2>&1 && ) >err 2>&1 &&
grep "has become dangling" err && test_i18ngrep "has become dangling" err &&
: And the dangling symref will not cause other annoying errors && : And the dangling symref will not cause other annoying errors &&
( (

View file

@ -35,8 +35,8 @@ test_expect_success 'upload-pack fails due to error in pack-objects packing' '
printf "0032want %s\n00000009done\n0000" \ printf "0032want %s\n00000009done\n0000" \
$(git rev-parse HEAD) >input && $(git rev-parse HEAD) >input &&
test_must_fail git upload-pack . <input >/dev/null 2>output.err && test_must_fail git upload-pack . <input >/dev/null 2>output.err &&
grep "unable to read" output.err && test_i18ngrep "unable to read" output.err &&
grep "pack-objects died" output.err test_i18ngrep "pack-objects died" output.err
' '
test_expect_success 'corrupt repo differently' ' test_expect_success 'corrupt repo differently' '

View file

@ -11,7 +11,7 @@ test_expect_success 'gc empty repository' '
test_expect_success 'gc --gobbledegook' ' test_expect_success 'gc --gobbledegook' '
test_expect_code 129 git gc --nonsense 2>err && test_expect_code 129 git gc --nonsense 2>err &&
grep "[Uu]sage: git gc" err test_i18ngrep "[Uu]sage: git gc" err
' '
test_expect_success 'gc -h with invalid configuration' ' test_expect_success 'gc -h with invalid configuration' '
@ -22,7 +22,7 @@ test_expect_success 'gc -h with invalid configuration' '
echo "[gc] pruneexpire = CORRUPT" >>.git/config && echo "[gc] pruneexpire = CORRUPT" >>.git/config &&
test_expect_code 129 git gc -h >usage 2>&1 test_expect_code 129 git gc -h >usage 2>&1
) && ) &&
grep "[Uu]sage" broken/usage test_i18ngrep "[Uu]sage" broken/usage
' '
test_done test_done

View file

@ -80,7 +80,7 @@ test_expect_success 'status --column' '
# dir1/untracked dir2/untracked untracked # dir1/untracked dir2/untracked untracked
# dir2/modified output # dir2/modified output
EOF EOF
test_cmp expect output test_i18ncmp expect output
' '
cat >expect <<\EOF cat >expect <<\EOF

View file

@ -157,7 +157,7 @@ test_expect_success 'merge -h with invalid index' '
>.git/index && >.git/index &&
test_expect_code 129 git merge -h 2>usage test_expect_code 129 git merge -h 2>usage
) && ) &&
grep "[Uu]sage: git merge" broken/usage test_i18ngrep "[Uu]sage: git merge" broken/usage
' '
test_expect_success 'reject non-strategy with a git-merge-foo name' ' test_expect_success 'reject non-strategy with a git-merge-foo name' '