* [PATCH] Update t3508 status
@ 2010-06-29 1:31 newren
2010-06-29 16:40 ` Junio C Hamano
2010-06-29 17:04 ` Christian Couder
0 siblings, 2 replies; 5+ messages in thread
From: newren @ 2010-06-29 1:31 UTC (permalink / raw)
To: git; +Cc: gitster, chriscool, Elijah Newren
From: Elijah Newren <newren@gmail.com>
Test #8 of t3508-cherry-pick-many-commits.sh has been fixed since
3af0bba8bff88ec1b078aae966a59af26c7a0718.
Signed-off-by: Elijah Newren <newren@gmail.com>
---
t/t3508-cherry-pick-many-commits.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/t/t3508-cherry-pick-many-commits.sh b/t/t3508-cherry-pick-many-commits.sh
index 93d7189..f90ed3d 100755
--- a/t/t3508-cherry-pick-many-commits.sh
+++ b/t/t3508-cherry-pick-many-commits.sh
@@ -82,7 +82,7 @@ test_expect_success 'revert fourth fourth~1 fourth~2 works' '
git diff --quiet HEAD first
'
-test_expect_failure 'cherry-pick -3 fourth works' '
+test_expect_success 'cherry-pick -3 fourth works' '
git checkout -f master &&
git reset --hard first &&
test_tick &&
--
1.7.2.rc0.207.ga9fc
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Update t3508 status
2010-06-29 1:31 [PATCH] Update t3508 status newren
@ 2010-06-29 16:40 ` Junio C Hamano
2010-06-29 16:50 ` Jonathan Nieder
2010-06-29 17:04 ` Christian Couder
1 sibling, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2010-06-29 16:40 UTC (permalink / raw)
To: newren; +Cc: git, chriscool
newren@gmail.com writes:
> From: Elijah Newren <newren@gmail.com>
>
> Test #8 of t3508-cherry-pick-many-commits.sh has been fixed since
> 3af0bba8bff88ec1b078aae966a59af26c7a0718.
>
> Signed-off-by: Elijah Newren <newren@gmail.com>
Curious.
This test is broken in the second parent of 3af0bba8b (i.e. the tip of
cc/cherry-pick-stdin), but in 3af0bba8b, i.e. the merge result, it does
seem to be fine.
What am I missing???
> ---
> t/t3508-cherry-pick-many-commits.sh | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/t/t3508-cherry-pick-many-commits.sh b/t/t3508-cherry-pick-many-commits.sh
> index 93d7189..f90ed3d 100755
> --- a/t/t3508-cherry-pick-many-commits.sh
> +++ b/t/t3508-cherry-pick-many-commits.sh
> @@ -82,7 +82,7 @@ test_expect_success 'revert fourth fourth~1 fourth~2 works' '
> git diff --quiet HEAD first
> '
>
> -test_expect_failure 'cherry-pick -3 fourth works' '
> +test_expect_success 'cherry-pick -3 fourth works' '
> git checkout -f master &&
> git reset --hard first &&
> test_tick &&
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Update t3508 status
2010-06-29 16:40 ` Junio C Hamano
@ 2010-06-29 16:50 ` Jonathan Nieder
2010-06-29 17:22 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Nieder @ 2010-06-29 16:50 UTC (permalink / raw)
To: Junio C Hamano; +Cc: newren, git, chriscool
Junio C Hamano wrote:
> newren@gmail.com writes:
>> Test #8 of t3508-cherry-pick-many-commits.sh
[...]
> Curious.
>
> This test is broken in the second parent of 3af0bba8b (i.e. the tip of
> cc/cherry-pick-stdin), but in 3af0bba8b, i.e. the merge result, it does
> seem to be fine.
>
> What am I missing???
The fix is in commit v1.7.2-rc0~6^2 (DWIM 'git show -5' to 'git show
--do-walk -5', 2010-06-01):
disable --no-walk in this case so ‘git show’ and future ‘git
cherry-pick’ can behave as expected.
Jonathan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Update t3508 status
2010-06-29 1:31 [PATCH] Update t3508 status newren
2010-06-29 16:40 ` Junio C Hamano
@ 2010-06-29 17:04 ` Christian Couder
1 sibling, 0 replies; 5+ messages in thread
From: Christian Couder @ 2010-06-29 17:04 UTC (permalink / raw)
To: newren; +Cc: git, gitster
On Tuesday 29 June 2010 03:31:31 newren@gmail.com wrote:
> From: Elijah Newren <newren@gmail.com>
>
> Test #8 of t3508-cherry-pick-many-commits.sh has been fixed since
> 3af0bba8bff88ec1b078aae966a59af26c7a0718.
>
> Signed-off-by: Elijah Newren <newren@gmail.com>
> ---
> t/t3508-cherry-pick-many-commits.sh | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/t/t3508-cherry-pick-many-commits.sh
> b/t/t3508-cherry-pick-many-commits.sh index 93d7189..f90ed3d 100755
> --- a/t/t3508-cherry-pick-many-commits.sh
> +++ b/t/t3508-cherry-pick-many-commits.sh
> @@ -82,7 +82,7 @@ test_expect_success 'revert fourth fourth~1 fourth~2
> works' ' git diff --quiet HEAD first
> '
>
> -test_expect_failure 'cherry-pick -3 fourth works' '
> +test_expect_success 'cherry-pick -3 fourth works' '
> git checkout -f master &&
> git reset --hard first &&
> test_tick &&
I tried to put this hunk in the following patch:
http://thread.gmane.org/gmane.comp.version-control.git/149156/
but Junio said in a private mail that the test did not pass for him so he
dropped this hunk.
By the way it looks like the third patch in the series has been lost:
http://thread.gmane.org/gmane.comp.version-control.git/149157
Thanks,
Christian.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Update t3508 status
2010-06-29 16:50 ` Jonathan Nieder
@ 2010-06-29 17:22 ` Junio C Hamano
0 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2010-06-29 17:22 UTC (permalink / raw)
To: Jonathan Nieder; +Cc: newren, git, chriscool
Jonathan Nieder <jrnieder@gmail.com> writes:
> Junio C Hamano wrote:
>> newren@gmail.com writes:
>
>>> Test #8 of t3508-cherry-pick-many-commits.sh
> [...]
>> Curious.
>>
>> This test is broken in the second parent of 3af0bba8b (i.e. the tip of
>> cc/cherry-pick-stdin), but in 3af0bba8b, i.e. the merge result, it does
>> seem to be fine.
>>
>> What am I missing???
>
> The fix is in commit v1.7.2-rc0~6^2 (DWIM 'git show -5' to 'git show
> --do-walk -5', 2010-06-01):
>
> disable --no-walk in this case so ‘git show’ and future ‘git
> cherry-pick’ can behave as expected.
Ah, that's it. 3af0bba (Merge branch 'cc/cherry-pick-stdin' into next,
2010-06-27) is on 'next', so this has to be queued as an evil merge of
your "DWIM" thing into cc/cherry-pick-stdin. That way, when the latter
graduates to 'master', the test will be marked as "expect_success".
Thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-06-29 17:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-29 1:31 [PATCH] Update t3508 status newren
2010-06-29 16:40 ` Junio C Hamano
2010-06-29 16:50 ` Jonathan Nieder
2010-06-29 17:22 ` Junio C Hamano
2010-06-29 17:04 ` Christian Couder
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).