git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Test failure on Windows in t3705-add-sparse-checkout.sh
@ 2022-01-13 21:12 Johannes Sixt
  2022-01-15 14:58 ` [PATCH] t3705-add-sparse-checkout: ignore a LF->CRLF warning on Windows Johannes Sixt
  2022-01-16  3:58 ` Test failure on Windows in t3705-add-sparse-checkout.sh Elijah Newren
  0 siblings, 2 replies; 4+ messages in thread
From: Johannes Sixt @ 2022-01-13 21:12 UTC (permalink / raw)
  To: Derrick Stolee; +Cc: Git Mailing List

Hi Stolee,

is there a reason we don't do this in the test case that you added in
63b60b3add75 ("add: update --chmod to skip sparse paths", 2021-09-24).
Notice that the similar git add earlier also sets core.autocrlf. As the
comment indicates, stderr indeed contains a warning about LF->CRLF
conversion in my Windows build and fails test_must_be_empty.

diff --git a/t/t3705-add-sparse-checkout.sh b/t/t3705-add-sparse-checkout.sh
index 81f3384eee..4fb663e3b4 100755
--- a/t/t3705-add-sparse-checkout.sh
+++ b/t/t3705-add-sparse-checkout.sh
@@ -181,13 +181,13 @@ test_expect_success 'git add fails outside of sparse-checkout definition' '
 	# Avoid munging CRLFs to avoid an error message
 	git -c core.autocrlf=input add --sparse sparse_entry 2>stderr &&
 	test_must_be_empty stderr &&
 	git ls-files --stage >actual &&
 	grep "^100644 .*sparse_entry\$" actual &&
 
-	git add --sparse --chmod=+x sparse_entry 2>stderr &&
+	git -c core.autocrlf=input add --sparse --chmod=+x sparse_entry 2>stderr &&
 	test_must_be_empty stderr &&
 	git ls-files --stage >actual &&
 	grep "^100755 .*sparse_entry\$" actual &&
 
 	git reset &&
 


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

end of thread, other threads:[~2022-01-18 16:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-13 21:12 Test failure on Windows in t3705-add-sparse-checkout.sh Johannes Sixt
2022-01-15 14:58 ` [PATCH] t3705-add-sparse-checkout: ignore a LF->CRLF warning on Windows Johannes Sixt
2022-01-18 16:17   ` Derrick Stolee
2022-01-16  3:58 ` Test failure on Windows in t3705-add-sparse-checkout.sh Elijah Newren

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).