From 8d72b9e5bd8d99cbd32ce0ebe2f5da8e9b1d88ce Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 7 May 2026 18:04:59 +0900 Subject: internal/pkg: optionally register binfmt This transparently supports curing foreign exec artifacts. Signed-off-by: Ophestra --- internal/rosa/all_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/rosa/all_test.go') diff --git a/internal/rosa/all_test.go b/internal/rosa/all_test.go index 52eabf39..8f86201a 100644 --- a/internal/rosa/all_test.go +++ b/internal/rosa/all_test.go @@ -20,8 +20,8 @@ func TestLoad(t *testing.T) { } func BenchmarkAll(b *testing.B) { - flags := rosa.Flags() - b.Cleanup(func() { rosa.DropCaches(flags) }) + arch, flags := rosa.Arch(), rosa.Flags() + b.Cleanup(func() { rosa.DropCaches(arch, flags) }) for b.Loop() { for i := range rosa.PresetEnd { @@ -29,7 +29,7 @@ func BenchmarkAll(b *testing.B) { } b.StopTimer() - rosa.DropCaches(0) + rosa.DropCaches("", 0) b.StartTimer() } } -- cgit v1.3.1