etcd/test.sh
Brandon Philips 0f97e3528a chore(build): use third_party.go
use the third_party.go project to replace our update script. This
requires moving a few things around and gets rid of a few annoying bugs:

- You can now bump individual packages
- A new src directory isn't created on build
- Less shell scripting!
- Things get built into ./bin/
2014-01-14 22:14:47 -08:00

16 lines
495 B
Bash
Executable File

#!/bin/sh -e
go run third_party.go test -i ./store
go run third_party.go test -v ./store
go run third_party.go test -i ./server
go run third_party.go test -v ./server
go run third_party.go test -i ./server/v2/tests
go run third_party.go test -v ./server/v2/tests
go run third_party.go test -i ./mod/lock/v2/tests
go run third_party.go test -v ./mod/lock/v2/tests
go run third_party.go test -i ./tests/functional
ETCD_BIN_PATH=$(pwd)/bin/etcd go run third_party.go test -v ./tests/functional