From 2d3504d54ebcf657f2febaf78863e54987a11315 Mon Sep 17 00:00:00 2001 From: Michael Anthony Knyszek Date: Tue, 24 Sep 2024 16:11:18 +0000 Subject: [PATCH] cmd/bench: run the default set of sweet benchmarks, not all of them We've retired two benchmarks, the biogo benchmarks, from the default set. Make sure they don't get run as part of the perf builder. Change-Id: I19f9fa81e7901e8de65b1839f978a965336fef7d Reviewed-on: https://go-review.googlesource.com/c/benchmarks/+/615417 Reviewed-by: Michael Pratt LUCI-TryBot-Result: Go LUCI --- cmd/bench/sweet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bench/sweet.go b/cmd/bench/sweet.go index 41e6762..c0375e1 100644 --- a/cmd/bench/sweet.go +++ b/cmd/bench/sweet.go @@ -105,7 +105,7 @@ func sweet(tcs []*toolchain) (err error) { workDir := filepath.Join(tmpDir, "work") cmd = exec.Command( sweetBin, "run", - "-run", "all", + "-run", "default", "-count", "10", "-bench-dir", filepath.Join(sweetRoot, "benchmarks"), "-cache", assetsCacheDir,