* [PATCH] merge-tree: fix typo in "both changed identically"
@ 2013-04-27 13:03 John Keeping
2013-04-27 13:23 ` René Scharfe
2013-04-27 13:40 ` [PATCH v2] " John Keeping
0 siblings, 2 replies; 5+ messages in thread
From: John Keeping @ 2013-04-27 13:03 UTC (permalink / raw)
To: git; +Cc: René Scharfe, Junio C Hamano, John Keeping
Commit aacecc3 (merge-tree: don't print entries that match "local" -
2013-04-07) had a typo causing the "same in both" check to be incorrect
and check if both the base and "their" versions are empty instead of
checking that both the "our" and "their" versions are empty. Fix this.
Reported-by: René Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: John Keeping <john@keeping.me.uk>
---
builtin/merge-tree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/merge-tree.c b/builtin/merge-tree.c
index ed25d81..ec49917 100644
--- a/builtin/merge-tree.c
+++ b/builtin/merge-tree.c
@@ -302,7 +302,7 @@ static void unresolved(const struct traverse_info *info, struct name_entry n[3])
static int threeway_callback(int n, unsigned long mask, unsigned long dirmask, struct name_entry *entry, struct traverse_info *info)
{
/* Same in both? */
- if (same_entry(entry+1, entry+2) || both_empty(entry+0, entry+2)) {
+ if (same_entry(entry+1, entry+2) || both_empty(entry+1, entry+2)) {
/* Modified, added or removed identically */
resolve(info, NULL, entry+1);
return mask;
--
1.8.2.1.715.gb260f47
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] merge-tree: fix typo in "both changed identically"
2013-04-27 13:03 [PATCH] merge-tree: fix typo in "both changed identically" John Keeping
@ 2013-04-27 13:23 ` René Scharfe
2013-04-27 13:38 ` John Keeping
2013-04-27 13:40 ` [PATCH v2] " John Keeping
1 sibling, 1 reply; 5+ messages in thread
From: René Scharfe @ 2013-04-27 13:23 UTC (permalink / raw)
To: John Keeping; +Cc: git, Junio C Hamano
How about squashing in this test?
René
---
t/t4300-merge-tree.sh | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/t/t4300-merge-tree.sh b/t/t4300-merge-tree.sh
index bd43b3d..2defb42 100755
--- a/t/t4300-merge-tree.sh
+++ b/t/t4300-merge-tree.sh
@@ -205,6 +205,19 @@ EXPECTED
test_cmp expected actual
'
+test_expect_success 'file remove A, B (same)' '
+ cat >expected <<\EXPECTED &&
+EXPECTED
+
+ git reset --hard initial &&
+ test_commit "rm-a-b-base" "ONE" "AAA" &&
+ git rm ONE &&
+ git commit -m "rm-a-b" &&
+ git tag "rm-a-b" &&
+ git merge-tree rm-a-b-base rm-a-b rm-a-b >actual &&
+ test_cmp expected actual
+'
+
test_expect_success 'file change A, remove B' '
cat >expected <<\EXPECTED &&
removed in remote
--
1.8.2.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] merge-tree: fix typo in "both changed identically"
2013-04-27 13:23 ` René Scharfe
@ 2013-04-27 13:38 ` John Keeping
0 siblings, 0 replies; 5+ messages in thread
From: John Keeping @ 2013-04-27 13:38 UTC (permalink / raw)
To: René Scharfe; +Cc: git, Junio C Hamano
On Sat, Apr 27, 2013 at 03:23:18PM +0200, René Scharfe wrote:
> How about squashing in this test?
>
> René
>
> ---
> t/t4300-merge-tree.sh | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/t/t4300-merge-tree.sh b/t/t4300-merge-tree.sh
> index bd43b3d..2defb42 100755
> --- a/t/t4300-merge-tree.sh
> +++ b/t/t4300-merge-tree.sh
> @@ -205,6 +205,19 @@ EXPECTED
> test_cmp expected actual
> '
>
> +test_expect_success 'file remove A, B (same)' '
> + cat >expected <<\EXPECTED &&
> +EXPECTED
> +
> + git reset --hard initial &&
> + test_commit "rm-a-b-base" "ONE" "AAA" &&
> + git rm ONE &&
> + git commit -m "rm-a-b" &&
> + git tag "rm-a-b" &&
> + git merge-tree rm-a-b-base rm-a-b rm-a-b >actual &&
I'm not sure about using the same "our" and "their" refs here. The
existing tests go out of their way to create separate commits - although
since they contain identical trees I don't think that actually buys us
anything.
Since this test does fail without my patch, it clearly does trigger the
affected code, so I think it's fine as is.
> + test_cmp expected actual
> +'
> +
> test_expect_success 'file change A, remove B' '
> cat >expected <<\EXPECTED &&
> removed in remote
> --
> 1.8.2.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2] merge-tree: fix typo in "both changed identically"
2013-04-27 13:03 [PATCH] merge-tree: fix typo in "both changed identically" John Keeping
2013-04-27 13:23 ` René Scharfe
@ 2013-04-27 13:40 ` John Keeping
2013-04-28 18:54 ` Junio C Hamano
1 sibling, 1 reply; 5+ messages in thread
From: John Keeping @ 2013-04-27 13:40 UTC (permalink / raw)
To: git; +Cc: René Scharfe, Junio C Hamano, John Keeping
Commit aacecc3 (merge-tree: don't print entries that match "local" -
2013-04-07) had a typo causing the "same in both" check to be incorrect
and check if both the base and "their" versions are removed instead of
checking that both the "our" and "their" versions are removed. Fix
this.
Reported-by: René Scharfe <rene.scharfe@lsrfire.ath.cx>
Test-written-by: René Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: John Keeping <john@keeping.me.uk>
---
Changes since v1:
- Add test from René
- s/empty/removed/g in the commit message
builtin/merge-tree.c | 2 +-
t/t4300-merge-tree.sh | 13 +++++++++++++
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/builtin/merge-tree.c b/builtin/merge-tree.c
index ed25d81..ec49917 100644
--- a/builtin/merge-tree.c
+++ b/builtin/merge-tree.c
@@ -302,7 +302,7 @@ static void unresolved(const struct traverse_info *info, struct name_entry n[3])
static int threeway_callback(int n, unsigned long mask, unsigned long dirmask, struct name_entry *entry, struct traverse_info *info)
{
/* Same in both? */
- if (same_entry(entry+1, entry+2) || both_empty(entry+0, entry+2)) {
+ if (same_entry(entry+1, entry+2) || both_empty(entry+1, entry+2)) {
/* Modified, added or removed identically */
resolve(info, NULL, entry+1);
return mask;
diff --git a/t/t4300-merge-tree.sh b/t/t4300-merge-tree.sh
index bd43b3d..2defb42 100755
--- a/t/t4300-merge-tree.sh
+++ b/t/t4300-merge-tree.sh
@@ -205,6 +205,19 @@ EXPECTED
test_cmp expected actual
'
+test_expect_success 'file remove A, B (same)' '
+ cat >expected <<\EXPECTED &&
+EXPECTED
+
+ git reset --hard initial &&
+ test_commit "rm-a-b-base" "ONE" "AAA" &&
+ git rm ONE &&
+ git commit -m "rm-a-b" &&
+ git tag "rm-a-b" &&
+ git merge-tree rm-a-b-base rm-a-b rm-a-b >actual &&
+ test_cmp expected actual
+'
+
test_expect_success 'file change A, remove B' '
cat >expected <<\EXPECTED &&
removed in remote
--
1.8.3.rc0.149.g98a72f2.dirty
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-04-28 18:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-27 13:03 [PATCH] merge-tree: fix typo in "both changed identically" John Keeping
2013-04-27 13:23 ` René Scharfe
2013-04-27 13:38 ` John Keeping
2013-04-27 13:40 ` [PATCH v2] " John Keeping
2013-04-28 18:54 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).