Skip to content

Commit 75c35f1

Browse files
committed
Split grpcproxy test into integration and e2e
Parallelize the grpcproxy tests. Refer to #13657. Signed-off-by: joshjms <joshjms1607@gmail.com>
1 parent 74fdeaa commit 75c35f1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,16 @@ function integration_e2e_pass {
361361
}
362362

363363
function grpcproxy_pass {
364+
grpcproxy_integration_pass "$@"
365+
grpcproxy_e2e_pass "$@"
366+
}
367+
368+
function grpcproxy_integration_pass {
364369
go test -timeout 30m -v "${RACE}" -tags cluster_proxy -cpu "${TEST_CPUS}" "$@" "${REPO_PATH}/integration"
365370
go test -timeout 30m -v "${RACE}" -tags cluster_proxy -cpu "${TEST_CPUS}" "$@" "${REPO_PATH}/clientv3/integration"
371+
}
372+
373+
function grpcproxy_e2e_pass {
366374
go test -timeout 30m -v -tags cluster_proxy "$@" "${REPO_PATH}/tests/e2e"
367375
}
368376

0 commit comments

Comments
 (0)