speed up tests by 20-30% by using GOGC=off
See the added comment for the rationale. For that same reason, I always build Go itself via "GOGC=off ./make.bash", as it's noticeably faster. Before this change: $ go clean -cache && go test -short PASS ok mvdan.cc/garble 35.298s $ go test -short PASS ok mvdan.cc/garble 2.703s With the change: $ go clean -cache && go test -short PASS ok mvdan.cc/garble 25.323s $ go test -short PASS ok mvdan.cc/garble 2.469s Incremental test runs with a warm cache are largely unaffected, as those would run very few of those short-lived and allocation-heavy programs. However, when the build cache isn't warm (such as when garble itself is modified), we easily see savings of 20-30%. We might revisit this in the future if Go's GC gets better in these situations, which should make "go build" faster. For now, we run our tests very often, so having them burn a bit less CPU is nice.pull/350/head
parent
7fc424ca26
commit
680e5624e9
Loading…
Reference in New Issue