fix: update benchmark paths to tests directory

This commit is contained in:
2026-01-11 20:43:20 -05:00
parent dfb013161e
commit 031c75d3ef
6 changed files with 92 additions and 5 deletions

View File

@@ -51,11 +51,11 @@ func runSample(samplePath string) error {
// Benchmark all samples using sub-benchmarks.
func BenchmarkSamples(b *testing.B) {
samples := map[string]string{
"Church": "../../samples/church.test",
"Fast": "../../samples/fast.test",
"Saccharine": "../../samples/saccharine.test",
"Simple": "../../samples/simple.test",
"Thunk": "../../samples/thunk.test",
"Church": "../../tests/church.test",
"Fast": "../../tests/fast.test",
"Saccharine": "../../tests/saccharine.test",
"Simple": "../../tests/simple.test",
"Thunk": "../../tests/thunk.test",
}
for name, path := range samples {