..

Go build test 并发行为

go build 和 go test 不同的包中默认并发执行。关闭这个行为可以通过 -p 1 参数。例如跑测试的之后

$ go test -p 1 ./...