@@ -14,7 +14,7 @@ func goTest(tcs []*toolchain) error {
1414 for _ , tc := range tcs {
1515 log .Printf ("Running Go test benchmarks for %s" , tc .Name )
1616 fmt .Printf ("toolchain: %s\n " , tc .Name )
17- err := tc .Do ("" , "test" , "-v" , "-run=none" , "-short" , "-bench=." , "-count=5 " , "golang.org/x/benchmarks/..." )
17+ err := tc .Do ("" , "test" , "-v" , "-run=none" , "-short" , "-bench=." , "-count=6 " , "golang.org/x/benchmarks/..." )
1818 if err != nil {
1919 return fmt .Errorf ("error running gotest with toolchain %s: %w" , tc .Name , err )
2020 }
@@ -68,7 +68,7 @@ func goTestSubrepo(tc *toolchain, subRepo, baselineDir, experimentDir string) er
6868 fmt .Printf ("toolchain: %s\n " , test .name ) // set the toolchain tag
6969
7070 goplsPath := filepath .Join (test .goplsDir , "gopls" )
71- err = tc .Do (benchmarkDir , "test" , "-short" , "-bench=." , fmt .Sprintf (`-gopls_path=%s` , goplsPath ), "-count=5 " , "-timeout=180m" )
71+ err = tc .Do (benchmarkDir , "test" , "-short" , "-bench=." , fmt .Sprintf (`-gopls_path=%s` , goplsPath ), "-count=6 " , "-timeout=180m" )
7272 if err != nil {
7373 return fmt .Errorf ("error running sub-repo %s benchmark %q with toolchain %s in dir %s: %w" , subRepo , test .name , tc .Name , benchmarkDir , err )
7474 }
0 commit comments