Commit 8749b870 authored by Yong Tang's avatar Yong Tang Committed by GitHub

Use `date` instead of `time` as `time` might be reserved word in sh. (#952)

Signed-off-by: default avatarYong Tang <yong.tang.github@outlook.com>
parent ee14993f
......@@ -43,7 +43,9 @@ ifeq ($(TEST_TYPE),middleware)
endif
ifeq ($(TEST_TYPE),coverage)
for d in `go list ./... | grep -v vendor`; do \
time go test -v -tags 'etcd k8s' -coverprofile=cover.out -covermode=atomic $$d || exit 1; \
t=$$(date +%s); \
go test -v -tags 'etcd k8s' -coverprofile=cover.out -covermode=atomic $$d || exit 1; \
echo "Coverage test $$d took $$(($$(date +%s)-t)) seconds"; \
if [ -f cover.out ]; then \
cat cover.out >> coverage.txt; \
rm cover.out; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment