Merge branch 'ab/i18n-fixup' into maint
authorJunio C Hamano <gitster@pobox.com>
Tue, 31 May 2011 19:00:27 +0000 (12:00 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 31 May 2011 19:00:27 +0000 (12:00 -0700)
* ab/i18n-fixup: (24 commits)
i18n: use test_i18n{cmp,grep} in t7600, t7607, t7611 and t7811
i18n: use test_i18n{grep,cmp} in t7508
i18n: use test_i18ngrep in t7506
i18n: use test_i18ngrep and test_i18ncmp in t7502
i18n: use test_i18ngrep in t7501
i18n: use test_i18ncmp in t7500
i18n: use test_i18ngrep in t7201
i18n: use test_i18ncmp and test_i18ngrep in t7102 and t7110
i18n: use test_i18ncmp and test_i18ngrep in t5541, t6040, t6120, t7004, t7012 and t7060
i18n: use test_i18ncmp and test_i18ngrep in t3700, t4001 and t4014
i18n: use test_i18ncmp and test_i18ngrep in t3203, t3501 and t3507
i18n: use test_i18ngrep in t2020, t2204, t3030, and t3200
i18n: use test_i18ngrep in lib-httpd and t2019
i18n: do not overuse C_LOCALE_OUTPUT (grep)
i18n: use test_i18ncmp in t1200 and t2200
i18n: .git file is not a human readable message (t5601)
i18n: do not overuse C_LOCALE_OUTPUT
i18n: mark init-db messages for translation
i18n: mark checkout plural warning for translation
i18n: mark checkout --detach messages for translation
...

12 files changed:
1  2 
builtin/clone.c
builtin/init-db.c
builtin/merge.c
t/t0001-init.sh
t/t2200-add-update.sh
t/t3200-branch.sh
t/t4001-diff-rename.sh
t/t4014-format-patch.sh
t/t7012-skip-worktree-writing.sh
t/t7060-wtstatus.sh
t/t7600-merge.sh
t/test-lib.sh
diff --combined builtin/clone.c
index 8560cf8572a1e4786ae4593c21c0e9d3a5d9d6e8,49c838fd3ff24ecc7821fbcf8f312d76967c168d..f579794d9a93a0e55289921f20b8f68b85211ca1
@@@ -81,7 -81,7 +81,7 @@@ static struct option builtin_clone_opti
                   "path to git-upload-pack on the remote"),
        OPT_STRING(0, "depth", &option_depth, "depth",
                    "create a shallow clone of that depth"),
 -      OPT_STRING('L', "separate-git-dir", &real_git_dir, "gitdir",
 +      OPT_STRING(0, "separate-git-dir", &real_git_dir, "gitdir",
                   "separate git dir from working tree"),
  
        OPT_END()
@@@ -417,7 -417,7 +417,7 @@@ int cmd_clone(int argc, const char **ar
        if (path)
                repo = xstrdup(absolute_path(repo_name));
        else if (!strchr(repo_name, ':'))
-               die("repository '%s' does not exist", repo_name);
+               die(_("repository '%s' does not exist"), repo_name);
        else
                repo = repo_name;
        is_local = path && !is_bundle;
diff --combined builtin/init-db.c
index 7d8ff096e9f5c19bfd050cedbed062c909101d19,ba13a54793d46de2410db14e6f387674e3b27c82..025aa47c804e4400cfa16ae8acd8dc2a5175e7c0
@@@ -319,10 -319,10 +319,10 @@@ int set_git_dir_init(const char *git_di
                struct stat st;
  
                if (!exist_ok && !stat(git_dir, &st))
-                       die("%s already exists", git_dir);
+                       die(_("%s already exists"), git_dir);
  
                if (!exist_ok && !stat(real_git_dir, &st))
-                       die("%s already exists", real_git_dir);
+                       die(_("%s already exists"), real_git_dir);
  
                /*
                 * make sure symlinks are resolved because we'll be
@@@ -351,15 -351,15 +351,15 @@@ static void separate_git_dir(const cha
                else if (S_ISDIR(st.st_mode))
                        src = git_link;
                else
-                       die("unable to handle file type %d", st.st_mode);
+                       die(_("unable to handle file type %d"), st.st_mode);
  
                if (rename(src, git_dir))
-                       die_errno("unable to move %s to %s", src, git_dir);
+                       die_errno(_("unable to move %s to %s"), src, git_dir);
        }
  
        fp = fopen(git_link, "w");
        if (!fp)
-               die("Could not create git link %s", git_link);
+               die(_("Could not create git link %s"), git_link);
        fprintf(fp, "gitdir: %s\n", git_dir);
        fclose(fp);
  }
@@@ -490,7 -490,7 +490,7 @@@ int cmd_init_db(int argc, const char **
                        "specify that the git repository is to be shared amongst several users",
                        PARSE_OPT_OPTARG | PARSE_OPT_NONEG, shared_callback, 0},
                OPT_BIT('q', "quiet", &flags, "be quiet", INIT_DB_QUIET),
 -              OPT_STRING('L', "separate-git-dir", &real_git_dir, "gitdir",
 +              OPT_STRING(0, "separate-git-dir", &real_git_dir, "gitdir",
                           "separate git dir from working tree"),
                OPT_END()
        };
diff --combined builtin/merge.c
index a437ecba297e76eab1b72a2966b2b0b1cf3b49bc,08245b6d664b2e29637dfba6ad33a394a5c104cc..24445f411b4823c92d5335491d03ed9df59970fd
@@@ -56,7 -56,6 +56,7 @@@ static size_t use_strategies_nr, use_st
  static const char **xopts;
  static size_t xopts_nr, xopts_alloc;
  static const char *branch;
 +static char *branch_mergeoptions;
  static int option_renormalize;
  static int verbosity;
  static int allow_rerere_auto;
@@@ -504,34 -503,26 +504,34 @@@ cleanup
        strbuf_release(&bname);
  }
  
 +static void parse_branch_merge_options(char *bmo)
 +{
 +      const char **argv;
 +      int argc;
 +
 +      if (!bmo)
 +              return;
 +      argc = split_cmdline(bmo, &argv);
 +      if (argc < 0)
 +              die(_("Bad branch.%s.mergeoptions string: %s"), branch,
 +                  split_cmdline_strerror(argc));
 +      argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
 +      memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
 +      argc++;
 +      argv[0] = "branch.*.mergeoptions";
 +      parse_options(argc, argv, NULL, builtin_merge_options,
 +                    builtin_merge_usage, 0);
 +      free(argv);
 +}
 +
  static int git_merge_config(const char *k, const char *v, void *cb)
  {
        if (branch && !prefixcmp(k, "branch.") &&
                !prefixcmp(k + 7, branch) &&
                !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
 -              const char **argv;
 -              int argc;
 -              char *buf;
 -
 -              buf = xstrdup(v);
 -              argc = split_cmdline(buf, &argv);
 -              if (argc < 0)
 -                      die(_("Bad branch.%s.mergeoptions string: %s"), branch,
 -                          split_cmdline_strerror(argc));
 -              argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
 -              memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
 -              argc++;
 -              parse_options(argc, argv, NULL, builtin_merge_options,
 -                            builtin_merge_usage, 0);
 -              free(buf);
 +              free(branch_mergeoptions);
 +              branch_mergeoptions = xstrdup(v);
 +              return 0;
        }
  
        if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
@@@ -599,14 -590,6 +599,14 @@@ static void write_tree_trivial(unsigne
                die(_("git write-tree failed to write a tree"));
  }
  
 +static const char *merge_argument(struct commit *commit)
 +{
 +      if (commit)
 +              return sha1_to_hex(commit->object.sha1);
 +      else
 +              return EMPTY_TREE_SHA1_HEX;
 +}
 +
  int try_merge_command(const char *strategy, size_t xopts_nr,
                      const char **xopts, struct commit_list *common,
                      const char *head_arg, struct commit_list *remotes)
                args[i++] = s;
        }
        for (j = common; j; j = j->next)
 -              args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
 +              args[i++] = xstrdup(merge_argument(j->item));
        args[i++] = "--";
        args[i++] = head_arg;
        for (j = remotes; j; j = j->next)
 -              args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
 +              args[i++] = xstrdup(merge_argument(j->item));
        args[i] = NULL;
        ret = run_command_v_opt(args, RUN_GIT_CMD);
        strbuf_release(&buf);
@@@ -839,7 -822,7 +839,7 @@@ static void read_merge_msg(void
  {
        strbuf_reset(&merge_msg);
        if (strbuf_read_file(&merge_msg, git_path("MERGE_MSG"), 0) < 0)
-               die_errno("Could not read from '%s'", git_path("MERGE_MSG"));
+               die_errno(_("Could not read from '%s'"), git_path("MERGE_MSG"));
  }
  
  static void run_prepare_commit_msg(void)
@@@ -979,16 -962,16 +979,16 @@@ static int setup_with_upstream(const ch
        const char **args;
  
        if (!branch)
-               die("No current branch.");
+               die(_("No current branch."));
        if (!branch->remote)
-               die("No remote for the current branch.");
+               die(_("No remote for the current branch."));
        if (!branch->merge_nr)
-               die("No default upstream defined for the current branch.");
+               die(_("No default upstream defined for the current branch."));
  
        args = xcalloc(branch->merge_nr + 1, sizeof(char *));
        for (i = 0; i < branch->merge_nr; i++) {
                if (!branch->merge[i]->dst)
-                       die("No remote tracking branch for %s from %s",
+                       die(_("No remote tracking branch for %s from %s"),
                            branch->merge[i]->src, branch->remote_name);
                args[i] = branch->merge[i]->dst;
        }
@@@ -1027,8 -1010,6 +1027,8 @@@ int cmd_merge(int argc, const char **ar
        if (diff_use_color_default == -1)
                diff_use_color_default = git_use_color_default;
  
 +      if (branch_mergeoptions)
 +              parse_branch_merge_options(branch_mergeoptions);
        argc = parse_options(argc, argv, prefix, builtin_merge_options,
                        builtin_merge_usage, 0);
  
        }
        if (file_exists(git_path("CHERRY_PICK_HEAD"))) {
                if (advice_resolve_conflict)
-                       die("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
-                           "Please, commit your changes before you can merge.");
+                       die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
+                           "Please, commit your changes before you can merge."));
                else
-                       die("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).");
+                       die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
        }
        resolve_undo_clear();
  
diff --combined t/t0001-init.sh
index 37c22516ffa731f4ed3d783c72daa7fe915c8705,651e0982cf11380842d401c6b65e98a1e193f669..ad664105646d4579a4e31ea5d230268acc33c0f5
@@@ -180,7 -180,7 +180,7 @@@ test_expect_success 'GIT_DIR & GIT_WORK
        fi
  '
  
- test_expect_success C_LOCALE_OUTPUT 'reinit' '
+ test_expect_success 'reinit' '
  
        (
                sane_unset GIT_CONFIG GIT_WORK_TREE GIT_CONFIG &&
                git init >out1 2>err1 &&
                git init >out2 2>err2
        ) &&
-       grep "Initialized empty" again/out1 &&
-       grep "Reinitialized existing" again/out2 &&
+       test_i18ngrep "Initialized empty" again/out1 &&
+       test_i18ngrep "Reinitialized existing" again/out2 &&
        >again/empty &&
-       test_cmp again/empty again/err1 &&
-       test_cmp again/empty again/err2
+       test_i18ncmp again/empty again/err1 &&
+       test_i18ncmp again/empty again/err2
  '
  
  test_expect_success 'init with --template' '
@@@ -402,14 -402,14 +402,14 @@@ test_expect_success 're-init to move gi
        test -d realgitdir/refs
  '
  
 -test_expect_success 're-init to move gitdir symlink' '
 +test_expect_success SYMLINKS 're-init to move gitdir symlink' '
        rm -rf newdir realgitdir &&
        git init newdir &&
        (
        cd newdir &&
        mv .git here &&
        ln -s here .git &&
 -      git init -L ../realgitdir
 +      git init --separate-git-dir ../realgitdir
        ) &&
        echo "gitdir: `pwd`/realgitdir" >expected &&
        test_cmp expected newdir/.git &&
diff --combined t/t2200-add-update.sh
index 7206c1374127ed7c1f9ad6d422e535458cb217b4,2d7d3115d592bdecee915c1d41c9166323749c6b..4cdebda6a5c9b893f46e99b5b565cc4b70efb2db
@@@ -111,7 -111,7 +111,7 @@@ test_expect_success 'touch and then ad
  
  '
  
- test_expect_success C_LOCALE_OUTPUT 'add -n -u should not add but just report' '
+ test_expect_success 'add -n -u should not add but just report' '
  
        (
                echo "add '\''check'\''" &&
        after=$(git ls-files -s check top) &&
  
        test "$before" = "$after" &&
-       test_cmp expect actual
+       test_i18ncmp expect actual
  
  '
  
@@@ -149,21 -149,31 +149,21 @@@ test_expect_success 'add -u resolves un
        echo 3 >path1 &&
        echo 2 >path3 &&
        echo 2 >path5 &&
 -      git add -u &&
 -      git ls-files -s path1 path2 path3 path4 path5 path6 >actual &&
 -      {
 -              echo "100644 $three 0   path1"
 -              echo "100644 $one 1     path3"
 -              echo "100644 $one 1     path4"
 -              echo "100644 $one 3     path5"
 -              echo "100644 $one 3     path6"
 -      } >expect &&
 -      test_cmp expect actual &&
  
 -      # Bonus tests.  Explicit resolving
 -      git add path3 path5 &&
 +      # Explicit resolving by adding removed paths should fail
        test_must_fail git add path4 &&
        test_must_fail git add path6 &&
 -      git rm path4 &&
 -      git rm path6 &&
  
 -      git ls-files -s "path?" >actual &&
 +      # "add -u" should notice removals no matter what stages
 +      # the index entries are in.
 +      git add -u &&
 +      git ls-files -s path1 path2 path3 path4 path5 path6 >actual &&
        {
                echo "100644 $three 0   path1"
                echo "100644 $two 0     path3"
                echo "100644 $two 0     path5"
 -      } >expect
 -
 +      } >expect &&
 +      test_cmp expect actual
  '
  
  test_expect_success '"add -u non-existent" should fail' '
diff --combined t/t3200-branch.sh
index 463ef1909f5e31be078f504546f5ea8ab3154d3c,0ce95c04e50f4662f87600bd3af48da0492a72a2..9e69c8c926620f06343e64e7b3aa3e4ada5a6b69
@@@ -46,7 -46,7 +46,7 @@@ test_expect_success 
      'git branch a/b/c && test -f .git/refs/heads/a/b/c'
  
  cat >expect <<EOF
 -0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000    branch: Created from master
 +$_z40 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000       branch: Created from master
  EOF
  test_expect_success \
      'git branch -l d/e/f should create a branch and a log' \
@@@ -203,10 -203,12 +203,12 @@@ test_expect_success 'test deleting bran
       test -z "$(git config branch.my7.remote)" &&
       test -z "$(git config branch.my7.merge)"'
  
- test_expect_success C_LOCALE_OUTPUT 'test deleting branch without config' \
+ test_expect_success 'test deleting branch without config' \
      'git branch my7 s &&
       sha1=$(git rev-parse my7 | cut -c 1-7) &&
-      test "$(git branch -d my7 2>&1)" = "Deleted branch my7 (was $sha1)."'
+      echo "Deleted branch my7 (was $sha1)." >expect &&
+      git branch -d my7 >actual 2>&1 &&
+      test_i18ncmp expect actual'
  
  test_expect_success 'test --track without .fetch entries' \
      'git branch --track my8 &&
@@@ -230,7 -232,7 +232,7 @@@ test_expect_success 
  
  # Keep this test last, as it changes the current branch
  cat >expect <<EOF
 -0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000    branch: Created from master
 +$_z40 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000       branch: Created from master
  EOF
  test_expect_success \
      'git checkout -b g/h/i -l should create a branch and a log' \
diff --combined t/t4001-diff-rename.sh
index 3dadf9b31636b862b2ab7377ce7100ebebd397e2,9a16d1cd932c901570b4d8218469d74692e5341f..844277cfa605f51cccd5d78a48a83fb75c03af9b
@@@ -64,42 -64,17 +64,42 @@@ test_expect_success 
      'validate the output.' \
      'compare_diff_patch current expected'
  
- test_expect_success C_LOCALE_OUTPUT 'favour same basenames over different ones' '
+ test_expect_success 'favour same basenames over different ones' '
        cp path1 another-path &&
        git add another-path &&
        git commit -m 1 &&
        git rm path1 &&
        mkdir subdir &&
        git mv another-path subdir/path1 &&
-       git status | grep "renamed: .*path1 -> subdir/path1"'
+       git status | test_i18ngrep "renamed: .*path1 -> subdir/path1"'
  
- test_expect_success C_LOCALE_OUTPUT  'favour same basenames even with minor differences' '
+ test_expect_success 'favour same basenames even with minor differences' '
        git show HEAD:path1 | sed "s/15/16/" > subdir/path1 &&
-       git status | grep "renamed: .*path1 -> subdir/path1"'
+       git status | test_i18ngrep "renamed: .*path1 -> subdir/path1"'
  
 +test_expect_success 'setup for many rename source candidates' '
 +      git reset --hard &&
 +      for i in 0 1 2 3 4 5 6 7 8 9;
 +      do
 +              for j in 0 1 2 3 4 5 6 7 8 9;
 +              do
 +                      echo "$i$j" >"path$i$j"
 +              done
 +      done &&
 +      git add "path??" &&
 +      test_tick &&
 +      git commit -m "hundred" &&
 +      (cat path1; echo new) >new-path &&
 +      echo old >>path1 &&
 +      git add new-path path1 &&
 +      git diff -l 4 -C -C --cached --name-status >actual 2>actual.err &&
 +      sed -e "s/^\([CM]\)[0-9]*       /\1     /" actual >actual.munged &&
 +      cat >expect <<-EOF &&
 +      C       path1   new-path
 +      M       path1
 +      EOF
 +      test_cmp expect actual.munged &&
 +      grep warning actual.err
 +'
 +
  test_done
diff --combined t/t4014-format-patch.sh
index dd406c44b509895cac0af3bfa08654823636f78e,37a4109c979d4ae27c0b625fab70eeee0d9a3dde..4a3bf5ba4015f5581ccb1b96f5888aa1f5dfdc1d
@@@ -614,13 -614,13 +614,13 @@@ echo "fatal: --name-only does not make 
  echo "fatal: --name-status does not make sense" > expect.name-status
  echo "fatal: --check does not make sense" > expect.check
  
- test_expect_success C_LOCALE_OUTPUT 'options no longer allowed for format-patch' '
+ test_expect_success 'options no longer allowed for format-patch' '
        test_must_fail git format-patch --name-only 2> output &&
-       test_cmp expect.name-only output &&
+       test_i18ncmp expect.name-only output &&
        test_must_fail git format-patch --name-status 2> output &&
-       test_cmp expect.name-status output &&
+       test_i18ncmp expect.name-status output &&
        test_must_fail git format-patch --check 2> output &&
-       test_cmp expect.check output'
+       test_i18ncmp expect.check output'
  
  test_expect_success 'format-patch --numstat should produce a patch' '
        git format-patch --numstat --stdout master..side > output &&
@@@ -793,46 -793,4 +793,46 @@@ test_expect_success 'format-patch wrap
        test_cmp expect subject
  '
  
 +check_author() {
 +      echo content >>file &&
 +      git add file &&
 +      GIT_AUTHOR_NAME=$1 git commit -m author-check &&
 +      git format-patch --stdout -1 >patch &&
 +      grep ^From: patch >actual &&
 +      test_cmp expect actual
 +}
 +
 +cat >expect <<'EOF'
 +From: "Foo B. Bar" <author@example.com>
 +EOF
 +test_expect_success 'format-patch quotes dot in headers' '
 +      check_author "Foo B. Bar"
 +'
 +
 +cat >expect <<'EOF'
 +From: "Foo \"The Baz\" Bar" <author@example.com>
 +EOF
 +test_expect_success 'format-patch quotes double-quote in headers' '
 +      check_author "Foo \"The Baz\" Bar"
 +'
 +
 +cat >expect <<'EOF'
 +From: =?UTF-8?q?"F=C3=B6o=20B.=20Bar"?= <author@example.com>
 +EOF
 +test_expect_success 'rfc2047-encoded headers also double-quote 822 specials' '
 +      check_author "Föo B. Bar"
 +'
 +
 +cat >expect <<'EOF'
 +Subject: header with . in it
 +EOF
 +test_expect_success 'subject lines do not have 822 atom-quoting' '
 +      echo content >>file &&
 +      git add file &&
 +      git commit -m "header with . in it" &&
 +      git format-patch -k -1 --stdout >patch &&
 +      grep ^Subject: patch >actual &&
 +      test_cmp expect actual
 +'
 +
  test_done
index c4104009e1c1f75c5d094b92d00d82a0d7ece2ae,cffb2696d4b1a1ca7bdc962590dc7cedde1e5e2a..9ceaa4049f960f20ca37d58e58e9e6c4e9ff4398
@@@ -54,7 -54,7 +54,7 @@@ test_expect_success 'read-tree removes 
  '
  
  NULL_SHA1=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
 -ZERO_SHA0=0000000000000000000000000000000000000000
 +
  setup_absent() {
        test -f 1 && rm 1
        git update-index --remove 1 &&
@@@ -124,16 -124,16 +124,16 @@@ cat >expected <<EO
  Would remove expected
  Would remove result
  EOF
- test_expect_success C_LOCALE_OUTPUT 'git-clean, absent case' '
+ test_expect_success 'git-clean, absent case' '
        setup_absent &&
        git clean -n > result &&
-       test_cmp expected result
+       test_i18ncmp expected result
  '
  
- test_expect_success C_LOCALE_OUTPUT 'git-clean, dirty case' '
+ test_expect_success 'git-clean, dirty case' '
        setup_dirty &&
        git clean -n > result &&
-       test_cmp expected result
+       test_i18ncmp expected result
  '
  
  #TODO test_expect_failure 'git-apply adds file' false
diff --combined t/t7060-wtstatus.sh
index 3a5d927f83730f53a67cfec76a0625008dfb71f2,da2a1f194cf5bd055bf48bb389f478da84168914..b8cb4906aa7de022543b594399b6fa9a83ffc847
@@@ -38,7 -38,7 +38,7 @@@ cat >expect <<EO
  no changes added to commit (use "git add" and/or "git commit -a")
  EOF
  
- test_expect_success C_LOCALE_OUTPUT 'M/D conflict does not segfault' '
+ test_expect_success 'M/D conflict does not segfault' '
        mkdir mdconflict &&
        (
                cd mdconflict &&
                git commit -m delete &&
                test_must_fail git merge master &&
                test_must_fail git commit --dry-run >../actual &&
-               test_cmp ../expect ../actual &&
+               test_i18ncmp ../expect ../actual &&
                git status >../actual &&
-               test_cmp ../expect ../actual
+               test_i18ncmp ../expect ../actual
        )
  '
  
 +test_expect_success 'rename & unmerged setup' '
 +      git rm -f -r . &&
 +      cat "$TEST_DIRECTORY/README" >ONE &&
 +      git add ONE &&
 +      test_tick &&
 +      git commit -m "One commit with ONE" &&
 +
 +      echo Modified >TWO &&
 +      cat ONE >>TWO &&
 +      cat ONE >>THREE &&
 +      git add TWO THREE &&
 +      sha1=$(git rev-parse :ONE) &&
 +      git rm --cached ONE &&
 +      (
 +              echo "100644 $sha1 1    ONE" &&
 +              echo "100644 $sha1 2    ONE" &&
 +              echo "100644 $sha1 3    ONE"
 +      ) | git update-index --index-info &&
 +      echo Further >>THREE
 +'
 +
 +test_expect_success 'rename & unmerged status' '
 +      git status -suno >actual &&
 +      cat >expect <<-EOF &&
 +      UU ONE
 +      AM THREE
 +      A  TWO
 +      EOF
 +      test_cmp expect actual
 +'
 +
 +test_expect_success 'git diff-index --cached shows 2 added + 1 unmerged' '
 +      cat >expected <<-EOF &&
 +      U       ONE
 +      A       THREE
 +      A       TWO
 +      EOF
 +      git diff-index --cached --name-status HEAD >actual &&
 +      test_cmp expected actual
 +'
 +
 +test_expect_success 'git diff-index --cached -M shows 2 added + 1 unmerged' '
 +      cat >expected <<-EOF &&
 +      U       ONE
 +      A       THREE
 +      A       TWO
 +      EOF
 +      git diff-index --cached --name-status HEAD >actual &&
 +      test_cmp expected actual
 +'
 +
 +test_expect_success 'git diff-index --cached -C shows 2 copies + 1 unmerged' '
 +      cat >expected <<-EOF &&
 +      U       ONE
 +      C       ONE     THREE
 +      C       ONE     TWO
 +      EOF
 +      git diff-index --cached -C --name-status HEAD |
 +      sed "s/^C[0-9]*/C/g" >actual &&
 +      test_cmp expected actual
 +'
 +
  test_done
diff --combined t/t7600-merge.sh
index 5463f87e6864eca224d63ede6b3a246924689cc6,e84e822219a45cca3478f50a05756be359b43393..2d4ed206e122f78dac05daf51da4446a24181301
@@@ -324,38 -324,6 +324,38 @@@ test_expect_success 'merge c1 with c2 (
  
  test_debug 'git log --graph --decorate --oneline --all'
  
 +test_expect_success 'merge c1 with c2 (log in config)' '
 +      git config branch.master.mergeoptions "" &&
 +      git reset --hard c1 &&
 +      git merge --log c2 &&
 +      git show -s --pretty=tformat:%s%n%b >expect &&
 +
 +      git config branch.master.mergeoptions --log &&
 +      git reset --hard c1 &&
 +      git merge c2 &&
 +      git show -s --pretty=tformat:%s%n%b >actual &&
 +
 +      test_cmp expect actual
 +'
 +
 +test_expect_success 'merge c1 with c2 (log in config gets overridden)' '
 +      (
 +              git config --remove-section branch.master
 +              git config --remove-section merge
 +      )
 +      git reset --hard c1 &&
 +      git merge c2 &&
 +      git show -s --pretty=tformat:%s%n%b >expect &&
 +
 +      git config branch.master.mergeoptions "--no-log" &&
 +      git config merge.log true &&
 +      git reset --hard c1 &&
 +      git merge c2 &&
 +      git show -s --pretty=tformat:%s%n%b >actual &&
 +
 +      test_cmp expect actual
 +'
 +
  test_expect_success 'merge c1 with c2 (squash in config)' '
        git reset --hard c1 &&
        git config branch.master.mergeoptions "--squash" &&
@@@ -527,10 -495,10 +527,10 @@@ test_expect_success 'merge fast-forwar
  
  test_debug 'git log --graph --decorate --oneline --all'
  
- test_expect_success C_LOCALE_OUTPUT 'in-index merge' '
+ test_expect_success 'in-index merge' '
        git reset --hard c0 &&
        git merge --no-ff -s resolve c1 >out &&
-       grep "Wonderful." out &&
+       test_i18ngrep "Wonderful." out &&
        verify_parents $c0 $c1
  '
  
diff --combined t/test-lib.sh
index 8a274fbe7916c6c2b661757e496788ee8463e664,763b9c55a81796e11fcc3eaefd9ec362106c7c2a..a3fe16d2b0d1ce8383a7d8d22f3effa291f3eab0
@@@ -89,9 -89,6 +89,9 @@@ esa
  _x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
  _x40="$_x05$_x05$_x05$_x05$_x05$_x05$_x05$_x05"
  
 +# Zero SHA-1
 +_z40=0000000000000000000000000000000000000000
 +
  # Each test should start with something like this, after copyright notices:
  #
  # test_description='Description of this test...
        test_set_prereq C_LOCALE_OUTPUT
  fi
  
+ # Use this instead of test_cmp to compare files that contain expected and
+ # actual output from git commands that can be translated.  When running
+ # under GETTEXT_POISON this pretends that the command produced expected
+ # results.
+ test_i18ncmp () {
+       test -n "$GETTEXT_POISON" || test_cmp "$@"
+ }
+ # Use this instead of "grep expected-string actual" to see if the
+ # output from a git command that can be translated either contains an
+ # expected string, or does not contain an unwanted one.  When running
+ # under GETTEXT_POISON this pretends that the command produced expected
+ # results.
+ test_i18ngrep () {
+       if test -n "$GETTEXT_POISON"
+       then
+           : # pretend success
+       elif test "x!" = "x$1"
+       then
+               shift
+               ! grep "$@"
+       else
+               grep "$@"
+       fi
+ }
  # test whether the filesystem supports symbolic links
  ln -s x y 2>/dev/null && test -h y 2>/dev/null && test_set_prereq SYMLINKS
  rm -f y