Skip to content
Snippets Groups Projects
Commit b40e9d1f authored by Book Moons's avatar Book Moons Committed by Andrea Spacca
Browse files

fuzz: Qualify target ID

Includes org name in target ID.
parent 071ecb49
Branches
Tags
No related merge requests found
...@@ -8,6 +8,7 @@ if [ "$#" -ne 1 ]; then ...@@ -8,6 +8,7 @@ if [ "$#" -ne 1 ]; then
fi fi
# Configure # Configure
NAME=transfersh
ROOT=./server ROOT=./server
TYPE=$1 TYPE=$1
...@@ -27,7 +28,7 @@ function fuzz { ...@@ -27,7 +28,7 @@ function fuzz {
DIR=${3:-$ROOT} DIR=${3:-$ROOT}
go-fuzz-build -libfuzzer -func $FUNC -o fuzzer.a $DIR go-fuzz-build -libfuzzer -func $FUNC -o fuzzer.a $DIR
clang -fsanitize=fuzzer fuzzer.a -o fuzzer clang -fsanitize=fuzzer fuzzer.a -o fuzzer
./fuzzit create job --type $TYPE $TARGET fuzzer ./fuzzit create job --type $TYPE $NAME/$TARGET fuzzer
} }
fuzz Profile profile fuzz Profile profile
fuzz HTTP http fuzz HTTP http
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment