diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-06 10:38:20 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-06 10:19:03 +0000 |
| commit | dc18fdf9b0a2dc9a54167eaf7600075da09d023e (patch) | |
| tree | f5f1d07ccfdf6d39423f44a86531f930fe4f4775 /Makefile | |
| parent | d884b519ef74f7edf51f2c964162f0a2fe80846c (diff) | |
tools/syz-stress: delete utility
Move syz-stress logic into syz-execprog.
It's already doing most of what syz-stress could do,
it even can load a corpus since recently.
There are few remaining bits that are missing
in execprog, so add them to execprog.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -100,7 +100,7 @@ endif .PHONY: all clean host target \ manager runtest fuzzer executor \ ci hub \ - execprog mutate prog2c trace2syz stress repro upgrade db \ + execprog mutate prog2c trace2syz repro upgrade db \ usbgen symbolize cover kconf syz-build crush \ bin/syz-extract bin/syz-fmt \ extract generate generate_go generate_rpc generate_sys \ @@ -113,7 +113,7 @@ endif all: host target host: manager runtest repro mutate prog2c db upgrade -target: fuzzer execprog stress executor +target: fuzzer execprog executor executor: descriptions ifeq ($(TARGETOS),fuchsia) @@ -185,9 +185,6 @@ crush: descriptions 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 - db: descriptions GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-db github.com/google/syzkaller/tools/syz-db |
