go test 禁用缓存

go test cached
每当执行 go test 时,如果功能代码和测试代码没有变动,则在下一次执行时,会直接读取缓存中的测试结果,并通过 (cached) 进行标记。



要禁用测试缓存,可以通过 -count=1 标志来实现



go test -count=1 ./…



https://blog.csdn.net/lizao2/article/details/114291397

加竞争检测
go test -count=1 -race ./… -v


Category golang