fix for windows tests (#747)

This commit is contained in:
hexoscott 2022-11-28 09:17:27 +00:00 committed by GitHub
parent f776665b21
commit 1e24a738bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ GOBIN = $(CURDIR)/$(GOBINREL)
BUILD_TAGS = nosqlite,noboltdb,disable_libutp
GOBUILD = env GO111MODULE=on go build -trimpath -tags $(BUILD_TAGS)
GOTEST = go test -trimpath -tags $(BUILD_TAGS)
GOTEST_NOFUZZ = go test -trimpath -tags $(BUILD_TAGS),nofuzz
GOTEST_NOFUZZ = go test -trimpath --tags=$(BUILD_TAGS),nofuzz
OS = $(shell uname -s)
ARCH = $(shell uname -m)