Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .evergreen/run-fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ 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
tar -czf $PROJECT_DIRECTORY/fuzz.tgz --absolute-names $PROJECT_DIRECTORY/fuzz
Copy link
Member Author

@prestonvasquez prestonvasquez Sep 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note the fuzz test still fails in CI, but because of a legitimate issue. See GODRIVER-3346 for more information.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the proper way is to instead cd $PROJECT_DIRECTORY and then run 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