Skip to content

Commit 7e40ef3

Browse files
committed
cmd/compilebench: update list of packages
There's a surprising amount of variety in the drivers of compilation speed. It's helpful to have a variety of packages here. For example, archive/tar exhibits golang/go#19839 much more than the others. Change-Id: If66b332d63427fb246305cb14cfee9ef450bcdcf Reviewed-on: https://go-review.googlesource.com/39713 Reviewed-by: Matthew Dempsky <[email protected]>
1 parent a0d14bb commit 7e40ef3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

compilebench/main.go

+6
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ var tests = []struct {
103103
{"BenchmarkUnicode", "unicode", false},
104104
{"BenchmarkGoTypes", "go/types", false},
105105
{"BenchmarkCompiler", "cmd/compile/internal/gc", false},
106+
{"BenchmarkSSA", "cmd/compile/internal/ssa", false},
107+
{"BenchmarkFlate", "compress/flate", false},
108+
{"BenchmarkGoParser", "go/parser", false},
109+
{"BenchmarkReflect", "reflect", false},
110+
{"BenchmarkTar", "archive/tar", false},
111+
{"BenchmarkXML", "encoding/xml", false},
106112
{"BenchmarkMakeBash", "", true},
107113
{"BenchmarkHelloSize", "", false},
108114
{"BenchmarkCmdGoSize", "", true},

0 commit comments

Comments
 (0)