aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/outcome/dispatcher_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-15 12:32:05 +0900
committerOphestra <cat@gensokyo.uk>2025-12-15 12:32:46 +0900
commitd0a3c6a2f3ac4da3921fa525cf1ee5ea7d68eb1c (patch)
tree057761396cc629e36ed1f58237f95dd41278e916 /internal/outcome/dispatcher_test.go
parent0c0e3d6fc2bf37eef703e9295fc56ef2a2fc5808 (diff)
internal/outcome: optional shim private dir
This is a private work directory owned by the specific shim. Useful for sockets owned by this instance of the shim and requires no direct assistance from the priv-side process. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/outcome/dispatcher_test.go')
-rw-r--r--internal/outcome/dispatcher_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/outcome/dispatcher_test.go b/internal/outcome/dispatcher_test.go
index 58a23e03..4cfa0fa7 100644
--- a/internal/outcome/dispatcher_test.go
+++ b/internal/outcome/dispatcher_test.go
@@ -701,6 +701,8 @@ func (panicDispatcher) stat(string) (os.FileInfo, error) { pa
func (panicDispatcher) open(string) (osFile, error) { panic("unreachable") }
func (panicDispatcher) readdir(string) ([]os.DirEntry, error) { panic("unreachable") }
func (panicDispatcher) tempdir() string { panic("unreachable") }
+func (panicDispatcher) mkdir(string, os.FileMode) error { panic("unreachable") }
+func (panicDispatcher) removeAll(string) error { panic("unreachable") }
func (panicDispatcher) exit(int) { panic("unreachable") }
func (panicDispatcher) evalSymlinks(string) (string, error) { panic("unreachable") }
func (panicDispatcher) prctl(uintptr, uintptr, uintptr) error { panic("unreachable") }