Revision 7d99afdc7c6f1eba00570dcfe8c2297719349179 authored by Gyu-Ho Lee on 03 November 2017, 05:39:34 UTC, committed by Gyu-Ho Lee on 03 November 2017, 17:58:43 UTC
To differentiate from gRPC client log "TRANSIENT_FAILURE"

Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
1 parent 5ceea41
Raw File
.semaphore.sh
#!/usr/bin/env bash

TEST_SUFFIX=$(date +%s | base64 | head -c 15)

TEST_OPTS="RELEASE_TEST=y INTEGRATION=y PASSES='build unit release integration_e2e functional'"
if [ "$TEST_ARCH" == "386" ]; then
	TEST_OPTS="GOARCH=386 PASSES='build unit integration_e2e'"
fi

docker run \
	--rm \
	--volume=`pwd`:/go/src/github.com/coreos/etcd \
	gcr.io/etcd-development/etcd-test:go1.8.5 \
	/bin/bash -c "${TEST_OPTS} ./test 2>&1 | tee test-${TEST_SUFFIX}.log"

! grep FAIL -A10 -B50 test-${TEST_SUFFIX}.log
back to top