Add make target to run unit tests with race detection.

This commit is contained in:
Ryszard Szopa 2013-10-29 04:40:01 -07:00
Родитель dbd79545f4
Коммит e8cd4b2f06
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,9 @@ build:
unit_test:
go test ./go/...
unit_test_race:
go test -race ./go/...
queryservice_test:
echo "queryservice test"
if [ -e "/usr/bin/memcached" ]; then \