aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/rosa_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-04-03 20:50:09 +0900
committerOphestra <cat@gensokyo.uk>2026-04-03 20:58:23 +0900
commit3d54d1f1767398e8cd17db34047203e090d2a9a9 (patch)
tree0605eb5e40feb4f0d4f4db8a9169d86c035fb4e1 /internal/rosa/rosa_test.go
parent9feac7738f5dbe9f2f32cfa297582d3b520cb049 (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/rosa_test.go')
-rw-r--r--internal/rosa/rosa_test.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/rosa/rosa_test.go b/internal/rosa/rosa_test.go
index 18d7b99b..ba51b248 100644
--- a/internal/rosa/rosa_test.go
+++ b/internal/rosa/rosa_test.go
@@ -91,3 +91,13 @@ func TestCureAll(t *testing.T) {
})
}
}
+
+func BenchmarkStage3(b *testing.B) {
+ for b.Loop() {
+ rosa.Std.Load(rosa.LLVMClang)
+
+ b.StopTimer()
+ rosa.DropCaches()
+ b.StartTimer()
+ }
+}