浏览代码

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
 }