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

Call ./fuzzit with the correct arguments #14

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -25,5 +25,13 @@ clang -fsanitize=fuzzer parse-complex.a -o parse-complex
wget -q -O fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/v2.4.29/fuzzit_Linux_x86_64
chmod a+x fuzzit

if [ ${1} == "local-regression" ]; then
LOCAL="--local"
TYPE=regression
else
LOCAL=""
TYPE=fuzzing
fi

## upload fuzz target for long fuzz testing on fuzzit.dev server or run locally for regression
./fuzzit create job --type ${1} fuzzitdev/parse-complex parse-complex
./fuzzit create job ${LOCAL} --type ${TYPE} fuzzitdev/parse-complex parse-complex
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.