Fix 'make testsuite' return value

This commit is contained in:
Louis Gesbert 2024-05-06 11:15:58 +02:00
parent 3d1e9a56bf
commit 8ad3b68d5f

View File

@ -225,7 +225,7 @@ testsuite-base: .FORCE
@for F in $(TEST_FLAGS_LIST); do \
echo >&2; \
[ -z "$$F" ] || echo ">> RE-RUNNING TESTS WITH FLAGS: $$F" >&2; \
$(CLERK_TEST) tests --test-flags="$$F" || break; \
$(CLERK_TEST) tests --test-flags="$$F" || exit 1; \
done
#> testsuite : Run interpreter tests over a selection of configurations