Enable shell tests

We need to use sudo: required, and dist: trusty to avoid old versions of
bash in travis which don't support the -n argument to the `wait` shell
built-in.

We had to disable the -e checks in etcd.sh since the killall || killall
parts were causing those to trigger in travis.
This commit is contained in:
James Shubin
2016-01-28 06:31:29 -05:00
parent 0795cadad1
commit 358604def2
5 changed files with 13 additions and 15 deletions

View File

@@ -19,5 +19,5 @@ go vet && echo PASS
# do these longer tests only when running on ci
if env | grep -q -e '^TRAVIS=true$' -e '^JENKINS_URL='; then
go test -race
#./test/test-shell.sh
./test/test-shell.sh
fi