From: SoutrikDas <valusoutrik@gmail.com>
To: valusoutrik@gmail.com
Cc: git@vger.kernel.org, gitster@pobox.com
Subject: [GSOC PATCH v2] t7003: modernize path existence checks using test helpers
Date: Wed, 11 Feb 2026 00:11:56 +0530 [thread overview]
Message-ID: <20260210184156.50363-1-valusoutrik@gmail.com> (raw)
In-Reply-To: <20260210181445.49380-1-valusoutrik@gmail.com>
Replace 'test -f' and 'test -d' with Git's path
helpers. Strengthen the '! test -d dir' and
'! test -d diroh/dir' tests.
Checking the test setup before test 12 confirms
that there are no expected non directories named
'dir' or 'diroh/dir'
Signed-off-by: SoutrikDas <valusoutrik@gmail.com>
---
v2:
Address feedback from Junio C Hamano
Acknowledge that the rewritten tests are stricter
---
t/t7003-filter-branch.sh | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/t/t7003-filter-branch.sh b/t/t7003-filter-branch.sh
index 5ab4d41ee7..c475769858 100755
--- a/t/t7003-filter-branch.sh
+++ b/t/t7003-filter-branch.sh
@@ -92,8 +92,8 @@ test_expect_success 'rewrite, renaming a specific file' '
test_expect_success 'test that the file was renamed' '
test D = "$(git show HEAD:doh --)" &&
- ! test -f D.t &&
- test -f doh &&
+ test_path_is_missing D.t &&
+ test_path_is_file doh &&
test D = "$(cat doh)"
'
@@ -103,10 +103,10 @@ test_expect_success 'rewrite, renaming a specific directory' '
test_expect_success 'test that the directory was renamed' '
test dir/D = "$(git show HEAD:diroh/D.t --)" &&
- ! test -d dir &&
- test -d diroh &&
- ! test -d diroh/dir &&
- test -f diroh/D.t &&
+ test_path_is_missing dir &&
+ test_path_is_dir diroh &&
+ test_path_is_missing diroh/dir &&
+ test_path_is_file diroh/D.t &&
test dir/D = "$(cat diroh/D.t)"
'
--
2.52.0
prev parent reply other threads:[~2026-02-10 18:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-09 17:24 [GSOC PATCH] t7003: modernize path existence checks using test helpers SoutrikDas
2026-02-09 18:11 ` Junio C Hamano
2026-02-10 18:14 ` SoutrikDas
2026-02-10 18:41 ` SoutrikDas [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260210184156.50363-1-valusoutrik@gmail.com \
--to=valusoutrik@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox