update benchmark-dockerized.sh and verify-dockerized.sh

update pull request
k3s-v1.15.3
aaa 2019-04-09 13:26:23 -04:00
parent dca968b078
commit 037729b357
2 changed files with 2 additions and 3 deletions

View File

@ -57,4 +57,4 @@ cd /go/src/k8s.io/kubernetes
make test-integration WHAT="$*" KUBE_TEST_ARGS="-run='XXX' -bench=. -benchmem" \ make test-integration WHAT="$*" KUBE_TEST_ARGS="-run='XXX' -bench=. -benchmem" \
| tee \ | tee \
>(prettybench -no-passthrough > "${ARTIFACTS}/BenchmarkResults.txt") \ >(prettybench -no-passthrough > "${ARTIFACTS}/BenchmarkResults.txt") \
>(go run test/integration/benchmark/jsonify/main.go "${ARTIFACTS}"/BenchmarkResults_benchmark_"$(date -u +%Y-%m-%dT%H:%M:%SZ)".json || cat > /dev/null) >(go run test/integration/benchmark/jsonify/main.go "${ARTIFACTS}/BenchmarkResults_benchmark_$(date -u +%Y-%m-%dT%H:%M:%SZ).json" || cat > /dev/null)

View File

@ -21,8 +21,7 @@ set -o xtrace
retry() { retry() {
for i in {1..5}; do for i in {1..5}; do
if "$@" if "$@"; then
then
return 0 return 0
else else
sleep "${i}" sleep "${i}"