From dc18fdf9b0a2dc9a54167eaf7600075da09d023e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 6 May 2024 10:38:20 +0200 Subject: 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. --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 584336822..459037457 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit mrf-deployment