소스 검색

Update ccm and test run args

Chris Bannister 11 년 전
부모
커밋
c9f797ecef
1개의 변경된 파일5개의 추가작업 그리고 6개의 파일을 삭제
  1. 5 6
      integration.sh

+ 5 - 6
integration.sh

@@ -4,18 +4,17 @@ set -e
 
 function run_tests() {
 	local version=$1
-	ccm create test -v $version -n 3 -s --debug
+	ccm create test -v $version -n 3 -s -d --vnodes
 
 	ccm status
 
+	local proto=2
 	if [[ $version == 1.2.* ]]; then
-		echo "running protocol 1 test suite"
-		go test -v ./... -proto 1
-	else
-		echo "running protocol 2 test suite"
-		go test -v ./...
+		proto=1
 	fi
 
+	go test -v -proto=$proto -rf=3 -cluster=$(ccm liveset) ./...
+
 	ccm clear
 }