tools: fix the CSV format error and add build target 'tools' in Makefile

Signed-off-by: Benjamin Wang <wachao@vmware.com>
This commit is contained in:
Benjamin Wang 2023-01-26 06:57:23 +08:00
parent 5b7b499f50
commit b9b7c9328e
2 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,10 @@ build:
./bin/etcdctl version
./bin/etcdutl version
.PHONY: tools
tools:
GO_BUILD_FLAGS="${GO_BUILD_FLAGS} -v" ./scripts/build_tools.sh
# Tests
GO_TEST_FLAGS?=

View File

@ -198,6 +198,7 @@ for RATIO_STR in ${RATIO_LIST}; do
fi
LINE="${LINE},${RD_QPS}:${WR_QPS}"
done
LINE="${LINE},"
END=$(date +%s)
DIFF=$((${END} - ${START}))
echo "took ${DIFF} seconds"