Skip to content

Initial Migration of Fuzz Tests & Integration Scripts From the OSS-Fuzz Project Repo #1901

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

Merged
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Use gitpython-developers org ownd repository for seed corpra
This repo was created after discussion in PR #1901.
  • Loading branch information
DaveLak committed Apr 15, 2024
commit 2041ba9972e7720f05bf570e2304fc0a5a2463d7
6 changes: 3 additions & 3 deletions fuzzing/oss-fuzz-scripts/container-environment-bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ download_and_concatenate_common_dictionaries() {

fetch_seed_corpra() {
# Seed corpus zip files are hosted in a separate repository to avoid additional bloat in this repo.
git clone --depth 1 https://github.com/DaveLak/oss-fuzz-inputs.git oss-fuzz-inputs &&
rsync -avc oss-fuzz-inputs/gitpython/corpra/ "$SEED_DATA_DIR/" &&
rm -rf oss-fuzz-inputs; # Clean up the cloned repo to keep the Docker image as slim as possible.
git clone --depth 1 https://github.com/gitpython-developers/qa-assets.git qa-assets &&
rsync -avc qa-assets/gitpython/corpra/ "$SEED_DATA_DIR/" &&
rm -rf qa-assets; # Clean up the cloned repo to keep the Docker image as slim as possible.
}

########################
Expand Down