summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b544388..b3c3f38 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ vet:
echo ${GO} vet $$dir; \
${GO} vet $$dir; \
done
- grep -R TODO .
+ grep -R TODO: .
lint:
${GO} get golang.org/x/lint/golint
find . -type d | while read dir; do \
@@ -43,7 +43,7 @@ lint:
done
test:
ifndef USE_ACL
- ${GO} test ./... -v
+ ${GO} test -race ./... -v
else
- ${GO} test -tags linuxacl ./... -v
+ ${GO} test -race -tags linuxacl ./... -v
endif