Skip to content

Commit

Permalink
bug: Fixing bash error (#4624)
Browse files Browse the repository at this point in the history
  • Loading branch information
maddeleine authored Jun 25, 2024
1 parent 84c4b70 commit 073c7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fuzz/runFuzzTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ then
COVERAGE_FAILURE_ALLOWED=1
fi
if [ "$FEATURE_COVERAGE" -lt $MIN_FEATURES_COVERED && COVERAGE_FAILURE_ALLOWED -eq 0 ]; then
if [[ "$FEATURE_COVERAGE" -lt $MIN_FEATURES_COVERED && COVERAGE_FAILURE_ALLOWED -eq 0 ]]; then
printf "\033[31;1mERROR!\033[0m ${TEST_NAME} only covers ${FEATURE_COVERAGE} features, which is below ${MIN_FEATURES_COVERED}! This may be due to missing corpus files or a bug.\n"
exit -1;
fi
Expand Down

0 comments on commit 073c7b4

Please sign in to comment.