From e16e2c9a4cb6937323e861b646792a6c4c978a3c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 4 Jun 2024 12:55:41 +0200 Subject: executor: add runner mode Move all syz-fuzzer logic into syz-executor and remove syz-fuzzer. Also restore syz-runtest functionality in the manager. Update #4917 (sets most signal handlers to SIG_IGN) --- executor/test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor/test.h') diff --git a/executor/test.h b/executor/test.h index c49459033..e6fabf63f 100644 --- a/executor/test.h +++ b/executor/test.h @@ -204,7 +204,7 @@ static int test_csum_inet_acc() static int test_cover_filter() { char* tmp = tempnam(nullptr, "syz-test-cover-filter"); - CoverFilter filter(tmp); + CoverFilter filter; CoverFilter child(filter.FD()); free(tmp); -- cgit mrf-deployment