From 1656845f45f284c574eb4f8bfe85dd7916a47a3a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 19 Jul 2019 10:44:54 +0200 Subject: fuzz.yaml: rename to fuzzbuzz.yaml Newsletter says we need to change the name. --- fuzz.yaml | 30 ------------------------------ fuzzbuzz.yaml | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 30 deletions(-) delete mode 100644 fuzz.yaml create mode 100644 fuzzbuzz.yaml diff --git a/fuzz.yaml b/fuzz.yaml deleted file mode 100644 index d4083f065..000000000 --- a/fuzz.yaml +++ /dev/null @@ -1,30 +0,0 @@ -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 diff --git a/fuzzbuzz.yaml b/fuzzbuzz.yaml new file mode 100644 index 000000000..d4083f065 --- /dev/null +++ b/fuzzbuzz.yaml @@ -0,0 +1,30 @@ +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 -- cgit mrf-deployment