Re: [PATCH v4 3/4] t1300: add more tests for whitespace and inline comments
From: Dragan Simic <hidden>
Date: 2024-03-21 05:01:39
On 2024-03-21 05:55, Eric Sunshine wrote:
On Thu, Mar 21, 2024 at 12:17 AM Dragan Simic [off-list ref] wrote:quoted
Add a handful of additional tests, to improve the coverage of the handling of configuration file entries whose values contain internal whitespace, leading and/or trailing whitespace, which may or may not be enclosed within quotation marks, or which contain an additional inline comment. At the same time, rework one already existing whitespace-related test a bit, to ensure its consistency with the newly added tests. This change introduced no functional changes to the already existing test. Helped-by: Eric Sunshine [off-list ref] Helped-by: Junio C Hamano [off-list ref] Signed-off-by: Dragan Simic <redacted> ---diff --git a/t/t1300-config.sh b/t/t1300-config.sh@@ -11,6 +11,98 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME +test_expect_success 'setup whitespace config' ' + sed -e "s/^|//" \ + -e "s/[$]$//" \ + -e "s/X/\\t/g" >.git/config <<-\EOFRepresenting TAB as `\t` in the sed replacement is not necessarily portable and (as far as I can see) we don't rely upon that in any existing tests. It probably would be safer to employ a literal TAB character in `s/X/ /g` as Junio showed in his example[1].
Hmm, I actually saw using a literal HT character as a disadvantage. Thanks for the notice, I'll send the v5 with this fixed.
[1]: https://lore.kernel.org/git/xmqqzfutjtfo.fsf@gitster.g/ (local)