mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

This refactoring offers following benefits: - Unified way how go test commands are being called (in terms of flags intepretation) - Uses standard go mechanisms (like go lists) to find files/packages that are subject for test. The mechanism are module aware. - Added instruction how to install tools needed for the tests/checkers. - Added colors to the output to make it easier to spot any failure. Confirmed to work using: - COVERDIR="./coverage" CPU="4" RACE=false COVER=false PASSES="build build_cov cov" ./test - CPU="4" RACE=false COVER=false PASSES="e2e functional integration" ./test - COVERDIR="./coverage" COVER="false" CPU="4" RACE="false" PASSES="fmt build unit build_cov integration e2e integration_e2e grpcproxy cov" ./test - PASSES=unit PKG=./wal TIMEOUT=1m ./test - PASSES=integration PKG=./clientv3 TIMEOUT=1m ./test - PASSES=unit PKG=./wal TESTCASE=TestNew TIMEOUT=1m ./test - PASSES=unit PKG=./wal TESTCASE="\bTestNew\b" TIMEOUT=1m ./test - PASSES=integration PKG=./client/integration TESTCASE="\bTestV2NoRetryEOF\b" TIMEOUT=1m ./test - COVERDIR=coverage PASSES="build_cov cov" ./test
20 lines
767 B
Go
20 lines
767 B
Go
// Copyright 2016 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// +build cluster_proxy
|
|
|
|
// The purpose of this (empty) package is too keep following test working:
|
|
// # go test -tags=cluster_proxy ./integration/embed
|
|
package embed_test
|