From 6309469e933a31a300fbf16d8e77f48dcee402d3 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 12 Apr 2025 13:56:41 +0900 Subject: app/instance: wrap internal implementation This reduces the scope of the fst package, which was growing questionably large. Signed-off-by: Ophestra --- internal/app/setuid/export_test.go | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 internal/app/setuid/export_test.go (limited to 'internal/app/setuid/export_test.go') diff --git a/internal/app/setuid/export_test.go b/internal/app/setuid/export_test.go deleted file mode 100644 index 77182863..00000000 --- a/internal/app/setuid/export_test.go +++ /dev/null @@ -1,24 +0,0 @@ -package setuid - -import ( - "git.gensokyo.uk/security/fortify/fst" - "git.gensokyo.uk/security/fortify/internal/sys" - "git.gensokyo.uk/security/fortify/sandbox" - "git.gensokyo.uk/security/fortify/system" -) - -func NewWithID(id fst.ID, os sys.State) fst.App { - a := new(app) - a.id = newID(&id) - a.sys = os - return a -} - -func AppIParams(a fst.App, sa fst.SealedApp) (*system.I, *sandbox.Params) { - v := a.(*app) - seal := sa.(*outcome) - if v.outcome != seal || v.id != seal.id { - panic("broken app/outcome link") - } - return seal.sys, seal.container -} -- cgit v1.3.1