From eec021cc4b4eb42bc9c8311755826828bfba1996 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 2 Jul 2025 21:31:29 +0900 Subject: hakurei: move container helpers toplevel Signed-off-by: Ophestra --- sandbox/seccomp/syscall_test.go | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 sandbox/seccomp/syscall_test.go (limited to 'sandbox/seccomp/syscall_test.go') diff --git a/sandbox/seccomp/syscall_test.go b/sandbox/seccomp/syscall_test.go deleted file mode 100644 index 933f060b..00000000 --- a/sandbox/seccomp/syscall_test.go +++ /dev/null @@ -1,20 +0,0 @@ -package seccomp - -import ( - "testing" -) - -func TestSyscallResolveName(t *testing.T) { - for name, want := range Syscalls() { - t.Run(name, func(t *testing.T) { - if got := syscallResolveName(name); got != want { - t.Errorf("syscallResolveName(%q) = %d, want %d", - name, got, want) - } - if got, ok := SyscallResolveName(name); !ok || got != want { - t.Errorf("SyscallResolveName(%q) = %d, want %d", - name, got, want) - } - }) - } -} -- cgit v1.3.1