diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-03 20:50:09 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-03 20:58:23 +0900 |
| commit | 3d54d1f1767398e8cd17db34047203e090d2a9a9 (patch) | |
| tree | 0605eb5e40feb4f0d4f4db8a9169d86c035fb4e1 /internal/rosa/all_test.go | |
| parent | 9feac7738f5dbe9f2f32cfa297582d3b520cb049 (diff) | |
internal/rosa: drop caches
This enables accurate benchmarking of the toolchain abstraction.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/all_test.go')
| -rw-r--r-- | internal/rosa/all_test.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/rosa/all_test.go b/internal/rosa/all_test.go index 407dc178..f97ebbdf 100644 --- a/internal/rosa/all_test.go +++ b/internal/rosa/all_test.go @@ -19,6 +19,18 @@ func TestLoad(t *testing.T) { } } +func BenchmarkAll(b *testing.B) { + for b.Loop() { + for i := range rosa.PresetEnd { + rosa.Std.Load(rosa.PArtifact(i)) + } + + b.StopTimer() + rosa.DropCaches() + b.StartTimer() + } +} + func TestResolveName(t *testing.T) { t.Parallel() |
