From 019cf5f2356fbadb904bb39993ec9e3adb1999c5 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 13 Dec 2017 13:49:08 +0100 Subject: sys: move test syscalls to a separate target We have them in linux solely for historical reasons. Fixes #462 --- pkg/host/host_linux.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'pkg/host/host_linux.go') diff --git a/pkg/host/host_linux.go b/pkg/host/host_linux.go index 9a763f10b..fd3dc5bb8 100644 --- a/pkg/host/host_linux.go +++ b/pkg/host/host_linux.go @@ -71,8 +71,6 @@ var kallsymsMap = map[string]string{ func isSupportedSyzkall(c *prog.Syscall) bool { switch c.CallName { - case "syz_test": - return false case "syz_open_dev": if _, ok := c.Args[0].(*prog.ConstType); ok { // This is for syz_open_dev$char/block. -- cgit mrf-deployment