aboutsummaryrefslogtreecommitdiffstats
path: root/fuzz.yaml
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-04-01 12:20:19 +0200
committerDmitry Vyukov <dvyukov@google.com>2019-04-01 12:20:19 +0200
commit44fe9159be031342cb956bde7dc3f3fa0340d9af (patch)
tree234a97e0f1c423bbf9c812497b0bad337cbe9060 /fuzz.yaml
parent36b433b718e36d924005b19a1d1525c928171aff (diff)
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.
Diffstat (limited to 'fuzz.yaml')
-rw-r--r--fuzz.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/fuzz.yaml b/fuzz.yaml
index de65bbae8..d4083f065 100644
--- a/fuzz.yaml
+++ b/fuzz.yaml
@@ -18,13 +18,13 @@ targets:
function: Fuzz
package: github.com/google/syzkaller/tools/syz-trace2syz/proggen
build_tags: syz_target syz_os_linux syz_arch_amd64
- - name: prog.Deserialize
+ - name: prog-Deserialize
harness:
- function: Deserialize
- package: github.com/google/syzkaller/prog/fuzz
+ function: FuzzDeserialize
+ package: github.com/google/syzkaller/prog/test
build_tags: syz_target,syz_os_test,syz_arch_64
- - name: prog.ParseLog
+ - name: prog-ParseLog
harness:
- function: ParseLog
- package: github.com/google/syzkaller/prog/fuzz
+ function: FuzzParseLog
+ package: github.com/google/syzkaller/prog/test
build_tags: syz_target,syz_os_test,syz_arch_64