aboutsummaryrefslogtreecommitdiffhomepage
path: root/ext/syscall_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-17 13:44:59 +0900
committerOphestra <cat@gensokyo.uk>2026-03-17 13:44:59 +0900
commite292031624b7fe57d508476828e51ca66d520bcb (patch)
treedffa3e6df36f1e4960782e6830bd7cd11937f241 /ext/syscall_test.go
parentcd5959fe5ab04786cd5dee3cf09f725229ae7c7b (diff)
ext: move lookup test
This was kept in-place to reduce patch size in the previous patch. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'ext/syscall_test.go')
-rw-r--r--ext/syscall_test.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/syscall_test.go b/ext/syscall_test.go
index 2cba2424..4bfbc0d4 100644
--- a/ext/syscall_test.go
+++ b/ext/syscall_test.go
@@ -11,20 +11,6 @@ import (
"hakurei.app/ext"
)
-func TestSyscallResolveName(t *testing.T) {
- t.Parallel()
-
- for name, want := range ext.Syscalls() {
- t.Run(name, func(t *testing.T) {
- t.Parallel()
-
- if got, ok := ext.SyscallResolveName(name); !ok || got != want {
- t.Errorf("SyscallResolveName(%q) = %d, want %d", name, got, want)
- }
- })
- }
-}
-
func TestSchedPolicyJSON(t *testing.T) {
t.Parallel()