aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJukka Kaartinen <jukka.kaartinen@unikie.com>2020-06-18 16:58:20 +0300
committerDmitry Vyukov <dvyukov@google.com>2020-06-22 15:10:31 +0200
commit1afe15356a4b7c4259d06a75a9618bf29acf3fa0 (patch)
treef3e16e60c20ed7f33be1e69d64b7da5e01495acf /Makefile
parent9843a4a88c2535526c8e780d6538edca6b6bfaeb (diff)
tools/syz-reporter: Tool to share/visualize crashes
Goes through crash folder that is stated in the workdir. Collects the crashes, counts and tags. usage: ./bin/syz-reporter -config manager.cfg Signed-off-by: Jukka Kaartinen <jukka.kaartinen@unikie.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3b8594501..690b43c83 100644
--- a/Makefile
+++ b/Makefile
@@ -177,6 +177,9 @@ prog2c: descriptions
crush: descriptions
GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-crush github.com/google/syzkaller/tools/syz-crush
+reporter: descriptions
+ GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-reporter github.com/google/syzkaller/tools/syz-reporter
+
stress: descriptions
GOOS=$(TARGETGOOS) GOARCH=$(TARGETGOARCH) $(GO) build $(GOTARGETFLAGS) -o ./bin/$(TARGETOS)_$(TARGETVMARCH)/syz-stress$(EXE) github.com/google/syzkaller/tools/syz-stress