소스 검색

default to proto2, add support for proto4 in integration suite

Chris Bannister 10 년 전
부모
커밋
2f95b95814
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      integration.sh

+ 4 - 0
integration.sh

@@ -47,8 +47,12 @@ function run_tests() {
 	local proto=2
 	if [[ $version == 1.2.* ]]; then
 		proto=1
+	elif [[ $version == 2.0.* ]]; then
+		proto=2
 	elif [[ $version == 2.1.* ]]; then
 		proto=3
+	elif [[ $version == 2.2.* ]]; then
+		proto=4
 	fi
 
 	if [ "$auth" = true ]