tools/test_mutants.sh: Load loader helper when running busted

This commit is contained in:
Matthew Wild 2024-02-23 12:16:03 +00:00
parent f4d2d7a3a3
commit 961b764d10

View file

@ -33,7 +33,7 @@ if [[ "$SPEC_FILE" == "" || ! -f "$SPEC_FILE" ]]; then
exit 1;
fi
if ! busted "$SPEC_FILE"; then
if ! busted --helper=loader "$SPEC_FILE"; then
echo "EE: Tests fail on original source. Fix it"\!;
exit 1;
fi