vitess-gh/Makefile

77 строки
2.1 KiB
Makefile
Исходник Обычный вид История

# Copyright 2012, Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can
# be found in the LICENSE file.
MAKEFLAGS = -s
2012-11-29 04:41:43 +04:00
all: build unit_test queryservice_test integration_test
build:
cd go/cmd/mysqlctl; go build
cd go/cmd/normalizer; go build
cd go/cmd/vtaction; go build
cd go/cmd/vtclient2; go build
cd go/cmd/vtctl; go build
cd go/cmd/vtocc; go build
cd go/cmd/vttablet; go build
cd go/cmd/zk; go build
cd go/cmd/zkctl; go build
cd go/cmd/zkocc; go build
# alphabetically ordered unit tests
# the ones that are commented out don't pass
unit_test:
cd go/bson; go test
cd go/bytes2; go test
cd go/cache; go test
cd go/cgzip; go test
cd go/hack; go test
# cd go/logfile; go test
if [ -e "/usr/bin/memcached" ]; then \
cd go/memcache; exec go test ; \
fi
cd go/pools; go test
cd go/rpcplus; go test
cd go/rpcplus/jsonrpc; go test
cd go/rpcwrap/auth; go test
cd go/stats; go test
cd go/timer; go test
cd go/umgmt; go test
cd go/vt/client2; go test
cd go/vt/mysqlctl; go test
cd go/vt/sqlparser; go test
cd go/vt/tabletmanager; go test
# cd go/vt/wrangler; go test
# cd go/zk; go test
# cd go/zk/zkctl; go test
2012-11-29 04:41:43 +04:00
queryservice_test:
echo "queryservice test"
if [ -e "/usr/bin/memcached" ]; then \
time test/queryservice_test.py -m ; \
else \
time test/queryservice_test.py ; \
fi
# export VT_TEST_FLAGS=-v for instance
2012-12-28 02:25:51 +04:00
integration_test:
cd test ; echo "schema test"; time ./schema.py $$VT_TEST_FLAGS
cd test ; echo "sharded test"; time ./sharded.py $$VT_TEST_FLAGS
cd test ; echo "tabletmanager test"; time ./tabletmanager.py $$VT_TEST_FLAGS
cd test ; echo "zkocc test"; time ./zkocc.py $$VT_TEST_FLAGS
cd test ; echo "connection test"; time ./connection_test.py
cd test ; echo "updatestream test"; time ./update_stream.py
clean:
cd go/cmd/mysqlctl; go clean
cd go/cmd/normalizer; go clean
cd go/cmd/vtaction; go clean
cd go/cmd/vtclient2; go clean
cd go/cmd/vtctl; go clean
cd go/cmd/vtocc; go clean
cd go/cmd/vttablet; go clean
cd go/cmd/zk; go clean
cd go/cmd/zkctl; go clean
cd go/cmd/zkocc; go clean