File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -175,6 +175,14 @@ test-integration:
175175test-e2e :
176176 PASSES=" build e2e" ./test.sh $(GO_TEST_FLAGS )
177177
178+ .PHONY : test-grpcproxy-integration
179+ test-grpcproxy-integration :
180+ PASSES=' build grpcproxy_integration' RACE=' true' ./test.sh $(GO_TEST_FLAGS )
181+
182+ .PHONY : test-grpcproxy-e2e
183+ test-grpcproxy-e2e :
184+ PASSES=' build grpcproxy_e2e' RACE=' true' ./test.sh $(GO_TEST_FLAGS )
185+
178186.PHONY : test-e2e-release
179187test-e2e-release :
180188 PASSES=" build release e2e" ./test.sh $(GO_TEST_FLAGS )
Original file line number Diff line number Diff line change @@ -194,7 +194,17 @@ function functional_pass {
194194}
195195
196196function grpcproxy_pass {
197- run_for_module " tests" go_test " ./integration/... ./e2e" " fail_fast" : \
197+ grpcproxy_integration_pass " $@ "
198+ grpcproxy_e2e_pass " $@ "
199+ }
200+
201+ function grpcproxy_integration_pass {
202+ run_for_module " tests" go_test " ./integration/..." " fail_fast" : \
203+ -timeout=45m -tags cluster_proxy " ${COMMON_TEST_FLAGS[@]} " " $@ "
204+ }
205+
206+ function grpcproxy_e2e_pass {
207+ run_for_module " tests" go_test " ./e2e/..." " fail_fast" : \
198208 -timeout=45m -tags cluster_proxy " ${COMMON_TEST_FLAGS[@]} " " $@ "
199209}
200210
You can’t perform that action at this time.
0 commit comments