public inbox for git@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] t2018: move checkout case-insensitive test from t0050
@ 2026-02-23  9:03 Md Ferdous Alam via GitGitGadget
  2026-02-23 16:12 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Md Ferdous Alam via GitGitGadget @ 2026-02-23  9:03 UTC (permalink / raw)
  To: git; +Cc: Md Ferdous Alam, mdferdousalam

From: mdferdousalam <mdferdousalam1989@yahoo.com>

The test 'checkout with no pathspec and a case insensitive fs' in
t0050 does not really belong there as it tests branch checkout
behavior, not filesystem properties.  It also had an unnecessary
CASE_INSENSITIVE_FS prereq since the sequence of commands should
succeed on any filesystem, and it did not verify the resulting
worktree contents.

Move it to t2018-checkout-branch.sh where it belongs, drop the
prereq, and add a check that the expected file is present after
the checkout.

Signed-off-by: mdferdousalam <mdferdousalam1989@yahoo.com>
---
    t2018: move checkout case-insensitive test from t0050

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-2054%2Fmdferdousalam%2Fmove-checkout-test-from-t0050-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-2054/mdferdousalam/move-checkout-test-from-t0050-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/2054

 t/t0050-filesystem.sh      | 20 --------------------
 t/t2018-checkout-branch.sh | 21 +++++++++++++++++++++
 2 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh
index ca8568067d..003329c082 100755
--- a/t/t0050-filesystem.sh
+++ b/t/t0050-filesystem.sh
@@ -117,24 +117,4 @@ $test_unicode 'merge (silent unicode normalization)' '
 	git merge topic
 '
 
-test_expect_success CASE_INSENSITIVE_FS 'checkout with no pathspec and a case insensitive fs' '
-	git init repo &&
-	(
-		cd repo &&
-
-		>Gitweb &&
-		git add Gitweb &&
-		git commit -m "add Gitweb" &&
-
-		git checkout --orphan todo &&
-		git reset --hard &&
-		mkdir -p gitweb/subdir &&
-		>gitweb/subdir/file &&
-		git add gitweb &&
-		git commit -m "add gitweb/subdir/file" &&
-
-		git checkout main
-	)
-'
-
 test_done
diff --git a/t/t2018-checkout-branch.sh b/t/t2018-checkout-branch.sh
index a48ebdbf4d..5f37e40591 100755
--- a/t/t2018-checkout-branch.sh
+++ b/t/t2018-checkout-branch.sh
@@ -285,4 +285,25 @@ test_expect_success 'checkout -b rejects an extra path argument' '
 	test_grep "Cannot update paths and switch to branch" err
 '
 
+test_expect_success 'checkout a branch when file and directory share case-insensitive name' '
+	git init repo-case &&
+	(
+		cd repo-case &&
+
+		>Gitweb &&
+		git add Gitweb &&
+		git commit -m "add Gitweb" &&
+
+		git checkout --orphan other &&
+		git reset --hard &&
+		mkdir -p gitweb/subdir &&
+		>gitweb/subdir/file &&
+		git add gitweb &&
+		git commit -m "add gitweb/subdir/file" &&
+
+		git checkout master &&
+		test_path_is_file Gitweb
+	)
+'
+
 test_done

base-commit: 7c02d39fc2ed2702223c7674f73150d9a7e61ba4
-- 
gitgitgadget

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] t2018: move checkout case-insensitive test from t0050
  2026-02-23  9:03 [PATCH] t2018: move checkout case-insensitive test from t0050 Md Ferdous Alam via GitGitGadget
@ 2026-02-23 16:12 ` Junio C Hamano
  2026-02-23 17:04   ` Elijah Newren
  0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2026-02-23 16:12 UTC (permalink / raw)
  To: Md Ferdous Alam via GitGitGadget
  Cc: git, Md Ferdous Alam, Elijah Newren, Johannes Schindelin

"Md Ferdous Alam via GitGitGadget" <gitgitgadget@gmail.com> writes:

Adding CC the authors of 69f272b9 (dir: special case check for the
possibility that pathspec is NULL, 2019-10-01) and 06d53148 (t[01]*:
adjust the references to the default branch name "main", 2020-11-18)
the block of lines removed by this patch are blamed for.

One thing that I noticed that needs checking but I didn't do so
myself is that the original is prepared not to break after Git 3.0
by using 'main' in t0050 (which forces the initial branch name to be
'main').  Whereever the corresponding new code goes, there needs a
similar provision to prevent the test from getting broken with the
default change.

I think specifying the initial branch name explicitly when the test
creates "repo-case" test repository and use that to go back to that
branch would be better for the purpose of this single test, rather
than using the blanket "GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME" for
the entire script.


> From: mdferdousalam <mdferdousalam1989@yahoo.com>
>
> The test 'checkout with no pathspec and a case insensitive fs' in
> t0050 does not really belong there as it tests branch checkout
> behavior, not filesystem properties.  It also had an unnecessary
> CASE_INSENSITIVE_FS prereq since the sequence of commands should
> succeed on any filesystem, and it did not verify the resulting
> worktree contents.
>
> Move it to t2018-checkout-branch.sh where it belongs, drop the
> prereq, and add a check that the expected file is present after
> the checkout.
>
> Signed-off-by: mdferdousalam <mdferdousalam1989@yahoo.com>
> ---
>     t2018: move checkout case-insensitive test from t0050
>
> Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-2054%2Fmdferdousalam%2Fmove-checkout-test-from-t0050-v1
> Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-2054/mdferdousalam/move-checkout-test-from-t0050-v1
> Pull-Request: https://github.com/gitgitgadget/git/pull/2054
>
>  t/t0050-filesystem.sh      | 20 --------------------
>  t/t2018-checkout-branch.sh | 21 +++++++++++++++++++++
>  2 files changed, 21 insertions(+), 20 deletions(-)
>
> diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh
> index ca8568067d..003329c082 100755
> --- a/t/t0050-filesystem.sh
> +++ b/t/t0050-filesystem.sh
> @@ -117,24 +117,4 @@ $test_unicode 'merge (silent unicode normalization)' '
>  	git merge topic
>  '
>  
> -test_expect_success CASE_INSENSITIVE_FS 'checkout with no pathspec and a case insensitive fs' '
> -	git init repo &&
> -	(
> -		cd repo &&
> -
> -		>Gitweb &&
> -		git add Gitweb &&
> -		git commit -m "add Gitweb" &&
> -
> -		git checkout --orphan todo &&
> -		git reset --hard &&
> -		mkdir -p gitweb/subdir &&
> -		>gitweb/subdir/file &&
> -		git add gitweb &&
> -		git commit -m "add gitweb/subdir/file" &&
> -
> -		git checkout main
> -	)
> -'
> -
>  test_done
> diff --git a/t/t2018-checkout-branch.sh b/t/t2018-checkout-branch.sh
> index a48ebdbf4d..5f37e40591 100755
> --- a/t/t2018-checkout-branch.sh
> +++ b/t/t2018-checkout-branch.sh
> @@ -285,4 +285,25 @@ test_expect_success 'checkout -b rejects an extra path argument' '
>  	test_grep "Cannot update paths and switch to branch" err
>  '
>  
> +test_expect_success 'checkout a branch when file and directory share case-insensitive name' '
> +	git init repo-case &&
> +	(
> +		cd repo-case &&
> +
> +		>Gitweb &&
> +		git add Gitweb &&
> +		git commit -m "add Gitweb" &&
> +
> +		git checkout --orphan other &&
> +		git reset --hard &&
> +		mkdir -p gitweb/subdir &&
> +		>gitweb/subdir/file &&
> +		git add gitweb &&
> +		git commit -m "add gitweb/subdir/file" &&
> +
> +		git checkout master &&
> +		test_path_is_file Gitweb
> +	)
> +'
> +
>  test_done
>
> base-commit: 7c02d39fc2ed2702223c7674f73150d9a7e61ba4

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] t2018: move checkout case-insensitive test from t0050
  2026-02-23 16:12 ` Junio C Hamano
@ 2026-02-23 17:04   ` Elijah Newren
  0 siblings, 0 replies; 3+ messages in thread
From: Elijah Newren @ 2026-02-23 17:04 UTC (permalink / raw)
  To: Junio C Hamano
  Cc: Md Ferdous Alam via GitGitGadget, git, Md Ferdous Alam,
	Johannes Schindelin

On Mon, Feb 23, 2026 at 8:12 AM Junio C Hamano <gitster@pobox.com> wrote:
>
> "Md Ferdous Alam via GitGitGadget" <gitgitgadget@gmail.com> writes:
>
> Adding CC the authors of 69f272b9 (dir: special case check for the
> possibility that pathspec is NULL, 2019-10-01) and 06d53148 (t[01]*:
> adjust the references to the default branch name "main", 2020-11-18)
> the block of lines removed by this patch are blamed for.
>
> One thing that I noticed that needs checking but I didn't do so
> myself is that the original is prepared not to break after Git 3.0
> by using 'main' in t0050 (which forces the initial branch name to be
> 'main').  Whereever the corresponding new code goes, there needs a
> similar provision to prevent the test from getting broken with the
> default change.
>
> I think specifying the initial branch name explicitly when the test
> creates "repo-case" test repository and use that to go back to that
> branch would be better for the purpose of this single test, rather
> than using the blanket "GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME" for
> the entire script.
>
>
> > From: mdferdousalam <mdferdousalam1989@yahoo.com>
> >
> > The test 'checkout with no pathspec and a case insensitive fs' in
> > t0050 does not really belong there as it tests branch checkout
> > behavior, not filesystem properties.  It also had an unnecessary
> > CASE_INSENSITIVE_FS prereq since the sequence of commands should
> > succeed on any filesystem, and it did not verify the resulting
> > worktree contents.

Actually, the CASE_INSENSTIVE_FS was very much intentional and
critical to triggering the original bug before it was fixed, and in
fact was overlooked by both Denton (the original reporter) and I,
which made us unable to figure out how to reproduce the segfault he
had triggered.  (The testcase does use both "Gitweb" and "gitweb" in
it as paths).  Luckily, Gábor came along and noticed the case
differences and created a testcase for us, and then I dug further for
other surrounding issues with that initial guide.  See the threads
around https://lore.kernel.org/git/20190925215530.GA9013@generichostname/
and https://lore.kernel.org/git/20190927021746.GL2637@szeder.dev/

> > Move it to t2018-checkout-branch.sh where it belongs, drop the
> > prereq,

I think it belongs where it already is, and the prereq should be kept.

> > and add a check that the expected file is present after
> > the checkout.

Not sure if that's worth changing, but if others feel strongly then it
doesn't hurt anything.

> >
> > Signed-off-by: mdferdousalam <mdferdousalam1989@yahoo.com>

From Documentation/SubmittingPatches:

"""
Please use a known identity in the `Signed-off-by` trailer, since we cannot
accept anonymous contributions. It is common, but not required, to use some form
of your real name. We realize that some contributors are not comfortable doing
so or prefer to contribute under a pseudonym or preferred name and we can accept
your patch either way, as long as the name and email you use are distinctive,
identifying, and not misleading.

The goal of this policy is to allow us to have sufficient information to contact
you if questions arise about your contribution.
"""

Since your patch was sent by "Md Ferdous Alam via GitGitGadget" I
suspect that your Signoff should have been "Signed-off-by: Md Ferdous
Alam <mdferdousalam1989@yahoo.com>" (and the From line updated to
match).  If I'm wrong about that, it might be helpful for you to
include an explanation of the name differences with or before your
next patch submission.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-02-23 17:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-23  9:03 [PATCH] t2018: move checkout case-insensitive test from t0050 Md Ferdous Alam via GitGitGadget
2026-02-23 16:12 ` Junio C Hamano
2026-02-23 17:04   ` Elijah Newren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox