From 44fe9159be031342cb956bde7dc3f3fa0340d9af Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 1 Apr 2019 12:20:19 +0200 Subject: 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. --- fuzz.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'fuzz.yaml') 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 -- cgit mrf-deployment