internal/app/shim: use syscall dispatcher
All checks were successful
Test / Create distribution (push) Successful in 33s
Test / Sandbox (push) Successful in 2m14s
Test / Hakurei (push) Successful in 3m9s
Test / Sandbox (race detector) (push) Successful in 3m58s
Test / Hpkg (push) Successful in 4m5s
Test / Hakurei (race detector) (push) Successful in 4m46s
Test / Flake checks (push) Successful in 1m28s

This enables instrumented testing of the shim.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-10-22 06:55:02 +09:00
parent c5f59c5488
commit 8accd3b219
7 changed files with 190 additions and 75 deletions

View File

@@ -18,7 +18,7 @@ func Main(ctx context.Context, msg message.Msg, config *hst.Config) {
log.Fatal(err)
}
seal := outcome{syscallDispatcher: direct{}}
seal := outcome{syscallDispatcher: direct{msg}}
if err := seal.finalise(ctx, msg, &id, config); err != nil {
printMessageError("cannot seal app:", err)
os.Exit(1)