Hello, Damien Zammit, le ven. 23 janv. 2026 06:32:29 +0000, a ecrit: > --- > tests/user-qemu.mk | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/tests/user-qemu.mk b/tests/user-qemu.mk > index 11ff82d5..c37e4e01 100644 > --- a/tests/user-qemu.mk > +++ b/tests/user-qemu.mk > @@ -233,6 +233,11 @@ USER_TESTS_CLEAN = $(subst tests/,clean-,$(USER_TESTS)) > > run-%: tests/test-% > $^ > + RESULT=$? > + if [ $RESULT -neq 0 ]
I don't think -neq is a standard comparison option? > && [ "$VERBOSE" == "true" ]; then Better recognize V=1 which is the standard verbosity variable for automake. Samuel
