From 8d25dac1ba4c9e7e9d950f073711f153a629ba31 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Wed, 8 Jan 2014 16:21:22 -0700 Subject: [PATCH] Revert test.sh changes. --- test.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test.sh b/test.sh index a62568ea9..ae40d8200 100755 --- a/test.sh +++ b/test.sh @@ -5,10 +5,6 @@ if [ -z "$PKG" ]; then PKG="./store ./server ./server/v2/tests ./mod/lock/v2/tests" fi -if [ -z "$RUN" ]; then - RUN="." -fi - # Get GOPATH, etc from build . ./build @@ -19,9 +15,9 @@ export GOPATH="${PWD}" for i in $PKG do go test -i $i - go test -v -test.run=$RUN $i + go test -v $i done # Functional tests go test -i ./tests/functional -ETCD_BIN_PATH=$(pwd)/etcd go test -v -test.run=$RUN ./tests/functional +ETCD_BIN_PATH=$(pwd)/etcd go test -v ./tests/functional