* [PATCH] t6019: avoid refname collision on case-insensitive systems
@ 2011-09-15 8:34 Thomas Rast
2011-09-15 12:45 ` Brad King
2011-09-15 15:52 ` Junio C Hamano
0 siblings, 2 replies; 5+ messages in thread
From: Thomas Rast @ 2011-09-15 8:34 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Brad King, git
The criss-cross tests kept failing for me because of collisions of 'a'
with 'A' etc. Prefix the lowercase refnames with an extra letter to
disambiguate.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
---
This fixes the tests on OS X. Together with Peff's fix to the poll
issue, it now tests clean again.
t/t6019-rev-list-ancestry-path.sh | 19 +++++++++++--------
1 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/t/t6019-rev-list-ancestry-path.sh b/t/t6019-rev-list-ancestry-path.sh
index 738af73..39b4cb0 100755
--- a/t/t6019-rev-list-ancestry-path.sh
+++ b/t/t6019-rev-list-ancestry-path.sh
@@ -75,33 +75,36 @@ test_expect_success 'rev-list --ancestry-patch D..M -- M.t' '
# a X
# \ / \
# c---cb
+#
+# All refnames prefixed with 'x' to avoid confusion with the tags
+# generated by test_commit on case-insensitive systems.
test_expect_success 'setup criss-cross' '
mkdir criss-cross &&
(cd criss-cross &&
git init &&
test_commit A &&
- git checkout -b b master &&
+ git checkout -b xb master &&
test_commit B &&
- git checkout -b c master &&
+ git checkout -b xc master &&
test_commit C &&
- git checkout -b bc b -- &&
- git merge c &&
- git checkout -b cb c -- &&
- git merge b &&
+ git checkout -b xbc xb -- &&
+ git merge xc &&
+ git checkout -b xcb xc -- &&
+ git merge xb &&
git checkout master)
'
# no commits in bc descend from cb
test_expect_success 'criss-cross: rev-list --ancestry-path cb..bc' '
(cd criss-cross &&
- git rev-list --ancestry-path cb..bc > actual &&
+ git rev-list --ancestry-path xcb..xbc > actual &&
test -z "$(cat actual)")
'
# no commits in repository descend from cb
test_expect_success 'criss-cross: rev-list --ancestry-path --all ^cb' '
(cd criss-cross &&
- git rev-list --ancestry-path --all ^cb > actual &&
+ git rev-list --ancestry-path --all ^xcb > actual &&
test -z "$(cat actual)")
'
--
1.7.7.rc1.366.ge210a6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] t6019: avoid refname collision on case-insensitive systems
2011-09-15 8:34 [PATCH] t6019: avoid refname collision on case-insensitive systems Thomas Rast
@ 2011-09-15 12:45 ` Brad King
2011-09-15 15:52 ` Junio C Hamano
1 sibling, 0 replies; 5+ messages in thread
From: Brad King @ 2011-09-15 12:45 UTC (permalink / raw)
To: Thomas Rast; +Cc: Junio C Hamano, git
On 9/15/2011 4:34 AM, Thomas Rast wrote:
> The criss-cross tests kept failing for me because of collisions of 'a'
> with 'A' etc. Prefix the lowercase refnames with an extra letter to
> disambiguate.
Thanks.
-Brad
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] t6019: avoid refname collision on case-insensitive systems
2011-09-15 8:34 [PATCH] t6019: avoid refname collision on case-insensitive systems Thomas Rast
2011-09-15 12:45 ` Brad King
@ 2011-09-15 15:52 ` Junio C Hamano
2011-09-15 15:53 ` Jeff King
1 sibling, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2011-09-15 15:52 UTC (permalink / raw)
To: Thomas Rast; +Cc: Jeff King, Brad King, git
Thomas Rast <trast@student.ethz.ch> writes:
> The criss-cross tests kept failing for me because of collisions of 'a'
> with 'A' etc. Prefix the lowercase refnames with an extra letter to
> disambiguate.
>
> Signed-off-by: Thomas Rast <trast@student.ethz.ch>
> ---
>
> This fixes the tests on OS X. Together with Peff's fix to the poll
> issue, it now tests clean again.
Hmm, I must have misplaced Peff's poll fix. Care to point me in the right
direction?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] t6019: avoid refname collision on case-insensitive systems
2011-09-15 15:52 ` Junio C Hamano
@ 2011-09-15 15:53 ` Jeff King
2011-09-15 16:45 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Jeff King @ 2011-09-15 15:53 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Thomas Rast, Brad King, git
On Thu, Sep 15, 2011 at 08:52:01AM -0700, Junio C Hamano wrote:
> > This fixes the tests on OS X. Together with Peff's fix to the poll
> > issue, it now tests clean again.
>
> Hmm, I must have misplaced Peff's poll fix. Care to point me in the right
> direction?
You have it already; it's part of the new http-auth commits I sent
yesterday (patch 2/5).
-Peff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] t6019: avoid refname collision on case-insensitive systems
2011-09-15 15:53 ` Jeff King
@ 2011-09-15 16:45 ` Junio C Hamano
0 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2011-09-15 16:45 UTC (permalink / raw)
To: Jeff King; +Cc: Thomas Rast, Brad King, git
Jeff King <peff@peff.net> writes:
> On Thu, Sep 15, 2011 at 08:52:01AM -0700, Junio C Hamano wrote:
>
>> > This fixes the tests on OS X. Together with Peff's fix to the poll
>> > issue, it now tests clean again.
>>
>> Hmm, I must have misplaced Peff's poll fix. Care to point me in the right
>> direction?
>
> You have it already; it's part of the new http-auth commits I sent
> yesterday (patch 2/5).
Ah, that one. Thanks, yes I do have it.
I somehow thought Thomas was talking about a test fix for 5800
"intermittent hang".
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-09-15 16:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-15 8:34 [PATCH] t6019: avoid refname collision on case-insensitive systems Thomas Rast
2011-09-15 12:45 ` Brad King
2011-09-15 15:52 ` Junio C Hamano
2011-09-15 15:53 ` Jeff King
2011-09-15 16:45 ` 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).