* tests/init.sh (returns_): Silence the 'local is_tracing' assignment.
+2024-06-20 Bruno Haible <bruno@clisp.org>
+
+ test-framework-sh: Fix side effect on dfa tests (regression 2024-06-11).
+ * tests/init.sh (returns_): Silence the 'local is_tracing' assignment.
+
2024-06-18 Bruno Haible <bruno@clisp.org>
copysignl tests: Avoid failure on Solaris 11.4.
# returns_ 1 command ... || fail
returns_ () {
# Disable tracing so it doesn't interfere with stderr of the wrapped command
- local is_tracing=`{ :; } 2>&1`
+ { local is_tracing=`{ :; } 2>&1`; } 2>/dev/null
{ set +x; } 2>/dev/null
local exp_exit="$1"