diff options
author | Matthew Wild <mwild1@gmail.com> | 2024-02-23 12:16:03 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2024-02-23 12:16:03 +0000 |
commit | 961b764d10ef0b03798e6bb0ae3bfdbd74212005 (patch) | |
tree | 0afbf7cdc03a52cd6da0225fb8363e5e2879147b | |
parent | f4d2d7a3a3e563dbd67201cc0cff9caca3a942c3 (diff) | |
download | prosody-961b764d10ef0b03798e6bb0ae3bfdbd74212005.tar.gz prosody-961b764d10ef0b03798e6bb0ae3bfdbd74212005.zip |
tools/test_mutants.sh: Load loader helper when running busted
-rwxr-xr-x | tools/test_mutants.sh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test_mutants.sh.lua b/tools/test_mutants.sh.lua index a0a55a8e..6e2423db 100755 --- a/tools/test_mutants.sh.lua +++ b/tools/test_mutants.sh.lua @@ -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 |