Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix leading slash exit in fuzz test #1813

Merged
Merged
4 changes: 3 additions & 1 deletion .evergreen/run-fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ done
# If the fuzz directory exists, then tar it up in preparation to upload to S3.
if [ -d $PROJECT_DIRECTORY/fuzz ]; then
echo "Tarring up fuzz directory"
tar -czf $PROJECT_DIRECTORY/fuzz.tgz $PROJECT_DIRECTORY/fuzz

cd $PROJECT_DIRECTORY
tar cfz fuzz.tgz ./fuzz

# Exit with code 1 to indicate that errors occurred in fuzz tests, resulting in corpus files being generated.
# This will trigger a notification to be sent to the Go Driver team.
Expand Down
Loading