From a635fc592bda72f93491d4bf137a42e7187862c9 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 16 Jan 2023 16:25:33 +0100 Subject: pkg/host: don't expect open and stat syscalls to be always present They do not exist on ARM64 Linux and break syzkaller tests on them. --- pkg/host/syscalls_linux_test.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'pkg/host/syscalls_linux_test.go') diff --git a/pkg/host/syscalls_linux_test.go b/pkg/host/syscalls_linux_test.go index 97f11c25f..375a640ea 100644 --- a/pkg/host/syscalls_linux_test.go +++ b/pkg/host/syscalls_linux_test.go @@ -27,11 +27,9 @@ func TestSupportedSyscalls(t *testing.T) { "memfd_create", "sendfile", "bpf$MAP_CREATE", - "open", "openat", "read", "write", - "stat", } enabled := make(map[*prog.Syscall]bool) for _, name := range safe { -- cgit mrf-deployment