首页 > 其他分享 >golang如何使用go test?

golang如何使用go test?

时间:2022-11-22 12:07:36浏览次数:47  
标签:run bench golang go cmap timeout test


​go test -run=TestHelloworld​​​​go test -bench=BenchmarkHelloworld​

​go test -timeout 30s cmap -run ^(TestMap)$​

​test -benchmem -run=^$ cmap -bench ^(BenchmarkMapGet)$​


标签:run,bench,golang,go,cmap,timeout,test
From: https://blog.51cto.com/u_11553781/5877554

相关文章

  • Golang编译缓存与实际项目不一致时报错has no field or method
    go1.9不明确是不是只在这个版本有小bug,有时候对最新进度的项目编译,会报上一个版本的错误,甚至改动无法编译,报出类似下面的错误:util\common\tools.go:2217:19:dtp.ClearWhe......
  • golang获取补码,原码
    packagemainimport("encoding/binary""fmt""strconv")funcmain(){vara=[]byte{0x15,0x4B}varb=[]byte{0xE0,0x15}//fmt.Println(fmt.......
  • go module常见问题
    1.如何兼容GOPATH的旧项目,支持modulemodule名取github.com/****/projectNamegomodinitgithub.com/fwhezfwhez/errorxgomodtidy2.golang.org/x拉取不到怎么办使用r......
  • golang 分页
    //通过页码尺寸和当前页码以及总数据条数,获取limit,offset//20,2,34funcToLimitOffset(sizeInstring,indexInstring,countint)(limitint,offsetint){size,_......
  • golang如何导出csv格式的文件
    import("fmt""github.com/xormplus/xorm""golang.org/x/text/transform""golang.org/x/text/encoding/simplifiedchinese""io/ioutil""github.com/......
  • go 别名的使用
    go里的别名和原来的类型是两种不同的类型,互相转换的方式是强制类型转换及,TypeA(b)或者TypeB(a)typeStringstringfuncmain(){varastring="hello"varbStrin......
  • django 常用功能
    如何给viewset的request添加参数验证:首先,编写相应的serializerclassXPushSerializer(serializers.ModelSerializer):task_id=serializers.CharField(required=Fals......
  • go1.11 wasm helloworld
    go1.11版本中已经支持了对go程编译出web可执行的wasm文件,向js的强悍地位提出了挑战。试水:1.新建main.gopackagemainimport("fmt")funcmain(){fmt.Println(......
  • 下载go源码时,遇到git - error: RPC failed; curl 18 transfer closed with outstandin
    执行下条语句时,出现该错误gitclonehttps://go.googlesource.com/go解决方案:gitconfig--globalhttp.postBuffer524288000......
  • golang算法-链表逆序
    前言链表逆序,表述的场景为:A->B->C->D逆序后:D->C>B>A分析需要插入数据,Insert方法需要打印数据,Print方法插入数据时,需要定位最后一个节点,LastNode方法最少需要两个偏移量......