mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 11:29:46 +00:00
74cb4e09a5
Otherwise go-fuzz-build now fails with: + go-fuzz-build -libfuzzer -func FuzzDeserialize -o fuzzer.a ./prog/test -: cannot find package "." in: /syzkaller/gopath/src/github.com/google/syzkaller/vendor/github.com/dvyukov/go-fuzz/go-fuzz-dep
29 lines
1.0 KiB
Bash
Executable File
29 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2019 syzkaller project authors. All rights reserved.
|
|
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
# Helper script for working with fuzzit.dev
|
|
# https://github.com/fuzzitdev/example-go
|
|
|
|
set -eux
|
|
export TYPE="${1}"
|
|
export GOBIN=$(realpath .)/bin
|
|
|
|
function target {
|
|
bin/go-fuzz-build -libfuzzer -func $3 -o fuzzer.a $2
|
|
clang -fsanitize=fuzzer fuzzer.a -o fuzzer
|
|
./fuzzit create job --type "${TYPE}" --branch ${GITHUB_REF#refs/heads/} --revision ${GITHUB_SHA} syzkaller/$1 ./fuzzer
|
|
}
|
|
|
|
go install github.com/dvyukov/go-fuzz/go-fuzz-build
|
|
|
|
curl -L --output fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/v2.4.77/fuzzit_Linux_x86_64
|
|
chmod a+x fuzzit
|
|
|
|
make descriptions
|
|
target syzkaller-prog-deserialize ./prog/test FuzzDeserialize
|
|
target syzkaller-prog-parselog ./prog/test FuzzParseLog
|
|
target syzkaller-compiler ./pkg/compiler Fuzz
|
|
target syzkaller-report ./pkg/report Fuzz
|
|
target syzkaller-trace2syz ./tools/syz-trace2syz/proggen Fuzz
|