From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] test-lib: catch misspelt 'test_expect_successo'
Date: Wed, 25 Mar 2026 01:46:01 -0400 [thread overview]
Message-ID: <20260325054601.GA3701549@coredump.intra.peff.net> (raw)
In-Reply-To: <xmqqy0jhxb3r.fsf@gitster.g>
On Tue, Mar 24, 2026 at 12:48:24PM -0700, Junio C Hamano wrote:
> > Using "-e" makes me very nervous, given all of its quirks. Granted, most
> > of them are related to it _not_ kicking in when you'd want it to, but I
> > worry it will create false positive/negative headaches.
>
> After looking at a few scripts, I am not suffering from such
> headaches yet; it does not look too bad. I'll stop this effort for
> now, but with a handful of patches I already sent, more than 80-90%
> of the entire test scripts that I run are now "set -e" clean, I
> think. Note that I do not run svn, cvs, or p4 tests ;-)
Clean in the sense that you don't _notice_ any problems. But there may
be lurking ones. For example, given this:
set -e
foo() {
false
echo foo
}
what would you expect the output to be for:
echo before &&
foo &&
echo after
versus:
echo before &&
foo
Whether that "false" triggers "-e" depends on where in the &&-chain the
call to the containing function is. So things that are not problems now
may suddenly become ones when far-away code is changed.
Maybe it's enough that people would notice and debug them when they
happen (if "set -e" is in test-lib.sh), and they wouldn't come up all
that much. I dunno. I just have been bitten enough by "-e" quirks that
I'm wary.
-Peff
next prev parent reply other threads:[~2026-03-25 5:46 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-24 14:52 [PATCH] t4014: fix call to `test_expect_success ()` Patrick Steinhardt
2026-03-24 15:18 ` Mirko Faina
2026-03-24 15:38 ` Junio C Hamano
2026-03-24 15:48 ` Mirko Faina
2026-03-24 16:39 ` Junio C Hamano
2026-03-24 17:13 ` Re* " Junio C Hamano
2026-03-24 18:05 ` [PATCH] t6002: make test "set -e" clean Junio C Hamano
2026-03-24 18:13 ` [PATCH] test-lib: catch misspelt 'test_expect_successo' Junio C Hamano
2026-03-24 19:35 ` Jeff King
2026-03-24 19:48 ` Junio C Hamano
2026-03-25 5:46 ` Jeff King [this message]
2026-03-24 18:20 ` [PATCH] t0008: make test "set -e" clean Junio C Hamano
2026-03-24 18:32 ` [PATCH] t7450: " Junio C Hamano
2026-03-24 18:38 ` Eric Sunshine
2026-03-24 19:03 ` Junio C Hamano
2026-03-25 7:07 ` Re* [PATCH] t4014: fix call to `test_expect_success ()` Patrick Steinhardt
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=20260325054601.GA3701549@coredump.intra.peff.net \
--to=peff@peff.net \
--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