英文:
Building go tests from multiple packages into single file
问题
有没有办法将位于多个包内的项目中的所有测试文件构建成一个单独的二进制文件?
要在单个包内构建二进制文件,可以使用go test -c
命令。
我需要像go test ./... -c
这样的功能,但是它返回“无法在多个包中使用-c标志”。
英文:
Is there any way to build all the test files in a project located inside multiple packages into a single binary file?
To build binary inside a single package, I could use
go test -c
.
I need something like go test ./... -c
,but this returns "cannot use -c flag with multiple packages"
答案1
得分: 1
有没有办法将位于多个包内的项目中的所有测试文件构建成一个单独的二进制文件?
英文:
> Is there any way to build all the test files in a project located inside multiple packages into a single binary file?
No.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论