diff options
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | Makefile | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -3,6 +3,9 @@ *.a *.so +#test files +profile.cov + # Folders _obj _test @@ -6,6 +6,10 @@ all: @echo go-spew is a great tool. thanks dave! @echo +test: + go test -v -race -tags safe ./ + go test -v -race -tags testcgo ./ -covermode=atomic -coverprofile=profile.cov + redomod: rm -f go.* GO111MODULE= go mod init |
