Bug:gomonkey系列问题(undefined: buildJmpDirective)
Bug:gomonkey系列问题(undefined: buildJmpDirective)
最近拉代码发现其他同事写单测使用的是gomonkey,我本地mac m3芯片执行报错,gomonkey: undefined: buildJmpDirective。
对go convey不熟悉的朋友可以看这篇文章:
Go Convey测试框架入门(go convey & gomonkey)
问题一:undefined: buildJmpDirective
问题原因:老版gomonkey不支持arm架构,在v2版本中已支持
详情见此issue:https://github.com/agiledragon/gomonkey/issues/38
解决:升级gomonkey到v2版本
//升级版本
go get github.com/agiledragon/gomonkey/v2 v2.10.1
问题二:permission denied
如果升级版本后,执行代码报:permission denied,本质还是这个库对arm架构依赖的问题
解决:export GOARCH=amd64
//方法一:临时配置,当前终端有效
export GOARCH=amd64
//方法二:修改全局配置,设置GOARCH为amd64
go env -w GOARCH=amd64
原文地址:https://blog.csdn.net/weixin_45565886/article/details/143956967
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!