On May 30, 2025 / 09:00, Bart Van Assche wrote: > On 5/30/25 12:54 AM, Shin'ichiro Kawasaki wrote: > > + if grep --quiet "set -e" "tests/${TEST_NAME}"; then > > + ERR_EXIT=1 > > + fi > > This is fragile. Please don't do this. My opinion is that test scripts > should declare it explicitly if they exit if something unexpected has > been encountered rather than trying to derive this with grep. I see. I will introduce the global flag, like ERREXIT=1 or something.