diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-04-01 12:20:19 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-04-01 12:20:19 +0200 |
| commit | 44fe9159be031342cb956bde7dc3f3fa0340d9af (patch) | |
| tree | 234a97e0f1c423bbf9c812497b0bad337cbe9060 /fuzz.yaml | |
| parent | 36b433b718e36d924005b19a1d1525c928171aff (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.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |
