From 9d7a19d162e7003ce89804f00c526b77b2328baa Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 18 Jul 2025 23:18:26 +0900 Subject: container: use more reliable nonexistence Signed-off-by: Ophestra --- container/seccomp/libseccomp_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'container/seccomp') diff --git a/container/seccomp/libseccomp_test.go b/container/seccomp/libseccomp_test.go index 8443adec..1ae3f764 100644 --- a/container/seccomp/libseccomp_test.go +++ b/container/seccomp/libseccomp_test.go @@ -79,7 +79,7 @@ func TestExport(t *testing.T) { func BenchmarkExport(b *testing.B) { buf := make([]byte, 8) - for i := 0; i < b.N; i++ { + for b.Loop() { e := New( Preset(PresetExt|PresetDenyNS|PresetDenyTTY|PresetDenyDevel|PresetLinux32, AllowMultiarch|AllowCAN|AllowBluetooth), -- cgit v1.3.1