syzkaller/fuzz.yaml
Dmitry Vyukov 44fe9159be prog/test: rename prog/fuzz to prog/test
gometalinter complained about fuzz.FuzzFoo names,
but go-fuzz now requires all fuzz functions to start with Fuzz.
So move the package to prog/test.
2019-04-01 12:20:19 +02:00

31 lines
899 B
YAML

language: go
version: "1.11"
base: ubuntu:16.04
checkout: github.com/google/syzkaller
targets:
- name: report
harness:
function: Fuzz
package: github.com/google/syzkaller/pkg/report
build_tags: syz_target
- name: compiler
harness:
function: Fuzz
package: github.com/google/syzkaller/pkg/compiler
build_tags: syz_target
- name: trace2syz
harness:
function: Fuzz
package: github.com/google/syzkaller/tools/syz-trace2syz/proggen
build_tags: syz_target syz_os_linux syz_arch_amd64
- name: prog-Deserialize
harness:
function: FuzzDeserialize
package: github.com/google/syzkaller/prog/test
build_tags: syz_target,syz_os_test,syz_arch_64
- name: prog-ParseLog
harness:
function: FuzzParseLog
package: github.com/google/syzkaller/prog/test
build_tags: syz_target,syz_os_test,syz_arch_64