英文:
how can I debug go tests with gdb
问题
我有一些Go的测试。我想用gdb进行调试。
但是由go test
构建的二进制文件在运行后被丢弃了。
那么我该怎么做呢?
我的操作系统是Windows 64位,使用的是Go 1.6版本。
英文:
I have some go tests. I would like to debug with gdb.
But the binaries built by go test
are thrown away after running.
So how do I do it?
go 1.6 on windows/64
答案1
得分: 4
你使用 go test -c
命令会生成可执行文件 xyz.test
。然后你可以使用 gdb xyz.test
命令进行调试。
你可以查看 go test --help
来了解 -c
标志的说明:
编译测试二进制文件为 pkg.test,但不运行它
(其中 pkg 是包导入路径的最后一个元素)。
可以使用 -o 标志来更改文件名。
英文:
You use go test -c
which will produce the executable file xyz.test
. Afterwards you use gdb xyz.test
to debug.
Just check go test --help
for an explanation of the -c
flag:
> Compile the test binary to pkg.test but do not run it
> (where pkg is the last element of the package's import path).
> The file name can be changed with the -o flag.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论