aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper/bwrap/config_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-03-17 01:09:12 +0900
committerOphestra <cat@gensokyo.uk>2025-03-17 01:10:27 +0900
commitee108603572101ad3c285830e04ee248916b6c5d (patch)
treee3d2274301cf7f1ed39df9c510672745fbe0b08a /helper/bwrap/config_test.go
parent44277dc0f1fd1806f5ceea34246a4c805a06b61b (diff)
seccomp: install output atomically
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'helper/bwrap/config_test.go')
-rw-r--r--helper/bwrap/config_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/helper/bwrap/config_test.go b/helper/bwrap/config_test.go
index 678f49de..7e78c8fb 100644
--- a/helper/bwrap/config_test.go
+++ b/helper/bwrap/config_test.go
@@ -1,7 +1,6 @@
package bwrap_test
import (
- "log"
"os"
"slices"
"testing"
@@ -12,8 +11,9 @@ import (
)
func TestConfig_Args(t *testing.T) {
- seccomp.CPrintln = log.Println
- t.Cleanup(func() { seccomp.CPrintln = nil })
+ oldF := seccomp.GetOutput()
+ seccomp.SetOutput(t.Log)
+ t.Cleanup(func() { seccomp.SetOutput(oldF) })
testCases := []struct {
name string