From 58711dfa434f653312bd9a7f87cd466609bd02d4 Mon Sep 17 00:00:00 2001 From: Laura Peskin Date: Wed, 22 May 2024 14:43:55 -0700 Subject: vm/starnix: run without host fuzzer mode Removes the SYZ_STARNIX_HACK envvar and runs syz-fuzzer on the VM. Co-authored-by: mvanotti@google.com --- sys/targets/targets.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'sys/targets') diff --git a/sys/targets/targets.go b/sys/targets/targets.go index 2fce53255..fd5d6f10c 100644 --- a/sys/targets/targets.go +++ b/sys/targets/targets.go @@ -732,11 +732,6 @@ func initTarget(target *Target, OS, arch string) { if target.BigEndian { target.HostEndian = binary.BigEndian } - // Temporal hack. - if OS == Linux && os.Getenv("SYZ_STARNIX_HACK") != "" { - target.ExecutorUsesForkServer = false - target.HostFuzzer = true - } target.initAddr2Line() } -- cgit mrf-deployment