Re: [PATCH] t5531: further matching fixups

2014-01-10 Thread Junio C Hamano
Jeff King p...@peff.net writes:

 ... but the
 failing test is actually somewhat broken in 'next' already.

Hmph, in what way?  I haven't seen t5531 breakage on 'next', with or
without your series...

 fixes it, and should be done regardless of the other series.

  t/t5531-deep-submodule-push.sh | 1 +
  1 file changed, 1 insertion(+)

 diff --git a/t/t5531-deep-submodule-push.sh b/t/t5531-deep-submodule-push.sh
 index 8c16e04..445bb5f 100755
 --- a/t/t5531-deep-submodule-push.sh
 +++ b/t/t5531-deep-submodule-push.sh
 @@ -12,6 +12,7 @@ test_expect_success setup '
   (
   cd work 
   git init 
 + git config push.default matching 
   mkdir -p gar/bage 
   (
   cd gar/bage 
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] t5531: further matching fixups

2014-01-10 Thread Jeff King
On Fri, Jan 10, 2014 at 03:34:59PM -0800, Junio C Hamano wrote:

 Jeff King p...@peff.net writes:
 
  ... but the
  failing test is actually somewhat broken in 'next' already.
 
 Hmph, in what way?  I haven't seen t5531 breakage on 'next', with or
 without your series...

The test still passes, but it is not testing the right thing anymore.

On 'next', run t5531. Test 6 is push fails when commit on
multiple branches if one branch has no remote and ends with:

  test_must_fail git push --recurse-submodules=check ../pub.git

But the output ends with:

  warning: push.default is unset; its implicit value has changed in
  Git 2.0 from 'matching' to 'simple'. To squelch this message
  [...]

  fatal: The current branch branch2 has no upstream branch.
  To push the current branch and set the remote as upstream, use

  git push --set-upstream ../pub.git branch2

When not merged with b2ed944 (push: switch default from matching to
simple), or with my patch to set push.default=matching explicitly, the
output is:

  The following submodule paths contain changes that can
  not be found on any remote:
gar/bage

  Please try

  git push --recurse-submodules=on-demand

  or cd to the path and use

  git push

  to push them to a remote.

  fatal: Aborting.

which is what the test is actually trying to check. So the push fails,
as we expect, but not for the right reason.

My other series for @{publish} had a bug that caused the push to
succeed. So that series was buggy (and I posted the fix already), but we
only noticed it because this test was not working (it should not care
about upstream/triangular config at all, but it accidentally did).

Does that clarify the situation?

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


[PATCH] t5531: further matching fixups

2014-01-08 Thread Jeff King
Commit 43eb920 switched one of the sub-repository in this
test to matching to prepare for a world where the default
becomes simple. However, the main repository needs a
similar change.

We did not notice any test failure when merged with b2ed944
(push: switch default from matching to simple, 2013-01-04)
because t5531.6 is trying to provoke a failure of git push
due to a submodule check. When combined with b2ed944 the
push still fails, but for the wrong reason (because our
upstream setup does not exist, not because of the submodule).

Signed-off-by: Jeff King p...@peff.net
---
On Wed, Jan 08, 2014 at 05:27:07AM -0500, Jeff King wrote:

 This patch passes the test suite by itself (with or without that fixup).
 But oddly, it seems to fail t5531 when merged with 'next'. I can't
 figure out why, though. It shouldn't affect any code that doesn't look
 at branch-pushremote.

I still don't understand the full reason for this interaction, but the
failing test is actually somewhat broken in 'next' already. This patch
fixes it, and should be done regardless of the other series.

 t/t5531-deep-submodule-push.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/t5531-deep-submodule-push.sh b/t/t5531-deep-submodule-push.sh
index 8c16e04..445bb5f 100755
--- a/t/t5531-deep-submodule-push.sh
+++ b/t/t5531-deep-submodule-push.sh
@@ -12,6 +12,7 @@ test_expect_success setup '
(
cd work 
git init 
+   git config push.default matching 
mkdir -p gar/bage 
(
cd gar/bage 
-- 
1.8.5.2.500.g8060133

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