Re: [PATCH] format-patch: dereference tags with --ignore-if-in-upstream

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Jun 01, 2015 at 11:22:12AM +0000, brian m. carlson wrote:

> > As an aside, now that we are dereferencing, these flags are from the
> > wrong object. They _should_ be the same (we mark the tag as
> > UNINTERESTING, too), but it's a little weird that at the end of the
> > function we restore the saved flags from the tag object onto the commit.
> > Just bumping the assignment of flags{1,2} would work (or just bump up
> > the lookup_commit_or_die call to where we assign to o{1,2}).
> 
> I tried looking up the flags after dereferencing the tags, but that led
> to the die("Not a range.") being triggered.  That's why the commit
> message ended up mentioning loading the flags before dereferencing.

Oh, sorry, I somehow totally missed that mention in the commit message.

It seems doubly wrong then to pull the flags from the tag and then later
apply them to the commit at the end. And in fact, if you do not have the
UNINTERESTING flag on your commit here, that is a real problem. If we
make your test:

diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh
index 60b9875..37bf70a 100755
--- a/t/t4014-format-patch.sh
+++ b/t/t4014-format-patch.sh
@@ -60,8 +60,9 @@ test_expect_success "format-patch --ignore-if-in-upstream" '
 test_expect_success "format-patch --ignore-if-in-upstream handles tags" '
 
 	git tag -a v1 -m tag side &&
+	git tag -a v2 -m tag master &&
 	git format-patch --stdout \
-		--ignore-if-in-upstream master..v1 >patch1 &&
+		--ignore-if-in-upstream v2..v1 >patch1 &&
 	cnt=$(grep "^From " patch1 | wc -l) &&
 	test $cnt = 2
 

then it fails (the key is having the tag on the left-hand side, because
that is where we need the UNINTERESTING flag to be).

Normally this flag is propagated to the dereferenced commit as part of
prepare_revision_walk, but we are looking at the flags before that gets
called. So you'll have to either propagate it manually here, or just
feed the original tags to the sub-traversal. I think the latter is
probably simpler. Something like:

  1. Check the flags on the original objects (o1 and o2).

  2. Peel them to commits; complain if they're not both commits. Store
     the result in another variable (e.g., commit1, commit2).

  3. Feed o1 and o2 to the new check_rev traversal.

  4. Clear the commit flags off of commit1 and commit2.

  5. Restore the original flags to o1 and o2.

Yeesh. I would have thought that we could just do this as part of the
normal traversal by using "--cherry-pick" (I think format-patch predates
that option). We have to have a symmetric range to do that, but I wonder
if we could simulate it by converting "foo..bar" into "--cherry-pick
--right-only foo...bar".

I guess that is basically "--cherry", but we still have to massage
"foo..bar" into "foo...bar". I think that is basically just:

   o1 ^= ~UNINTERESTING;
   o1 |= SYMMETRIC_LEFT;

but there might be a hidden catch I am not considering.

> > I think this avoids the usual "wc" whitespace pitfall because you don't
> > use double-quotes. But maybe:
> > 
> >   grep "^From " patch1 >count &&
> >   test_line_count = 2 patch1
> > 
> > would be more idiomatic.
> 
> I can certainly make that change.  I made the test as similar as
> possible to other tests in the area, but I wasn't aware of
> test_line_count.

Ah, I just looked at the context in your patch, not at the whole test. I
don't mind matching the surrounding code. But I also don't mind a
preparatory modernization patch to the test script. :)

-Peff
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]