From cd5959fe5ab04786cd5dee3cf09f725229ae7c7b Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 17 Mar 2026 13:35:48 +0900 Subject: ext: isolate from container/std These are too general to belong in the container package. This targets the v0.4 release to reduce the wrapper maintenance burden. Signed-off-by: Ophestra --- container/seccomp/std_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'container/seccomp/std_test.go') diff --git a/container/seccomp/std_test.go b/container/seccomp/std_test.go index 6d548dce..026fef8b 100644 --- a/container/seccomp/std_test.go +++ b/container/seccomp/std_test.go @@ -6,12 +6,13 @@ import ( "unsafe" "hakurei.app/container/std" + "hakurei.app/ext" ) func TestSyscallResolveName(t *testing.T) { t.Parallel() - for name, want := range std.Syscalls() { + for name, want := range ext.Syscalls() { t.Run(name, func(t *testing.T) { t.Parallel() @@ -24,8 +25,8 @@ func TestSyscallResolveName(t *testing.T) { } func TestRuleType(t *testing.T) { - assertKind[std.Uint, scmpUint](t) - assertKind[std.Int, scmpInt](t) + assertKind[ext.Uint, scmpUint](t) + assertKind[ext.Int, scmpInt](t) assertSize[std.NativeRule, syscallRule](t) assertKind[std.ScmpDatum, scmpDatum](t) -- cgit v1.3.1