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. --- docs/windows/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/windows/README.md b/docs/windows/README.md index a511ba86b..a72cec627 100644 --- a/docs/windows/README.md +++ b/docs/windows/README.md @@ -35,9 +35,9 @@ cl executor\executor_windows.cc /EHsc -o bin\windows_amd64\syz-executor.exe \ Msimg32.lib RpcRT4.lib Rpcrt4.lib lz32.lib ``` -To run `syz-stress`: +To run `syz-execprog`: ``` -bin\windows_amd64\syz-stress.exe -executor c:\full\path\to\bin\windows_amd64\syz-executor.exe +bin\windows_amd64\syz-execprog.exe -executor c:\full\path\to\bin\windows_amd64\syz-executor.exe -stress ``` Windows is supported by only `gce` VMs at the moment. -- cgit mrf-deployment