Skip to content

Commit

Permalink
Replace v1 e2e_mixer make target with v2 (#6378)
Browse files Browse the repository at this point in the history
* Replace v1 e2e_mixer make target with v2

* Also remove base v1 mixer test

* Remove unneeded dep
  • Loading branch information
ostromart authored and istio-testing committed Jun 19, 2018
1 parent f52044e commit f588e41
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tests/istio.mk
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ e2e_simple: istioctl generate_yaml-envoyv2_transition_loadbalancer_ingressgatewa
e2e_simple_auth: istioctl generate_yaml-envoyv2_transition_loadbalancer_ingressgateway e2e_simple_auth_run
e2e_simple_noauth: istioctl generate_yaml-envoyv2_transition_loadbalancer_ingressgateway e2e_simple_noauth_run

e2e_mixer: istioctl generate_yaml e2e_mixer_run
e2e_mixer: istioctl generate_yaml-envoyv2_transition_loadbalancer_ingressgateway e2e_mixer_run

e2e_galley: istioctl generate_yaml e2e_galley_run

Expand Down Expand Up @@ -101,7 +101,9 @@ e2e_simple_noauth_run: out_dir
--rbac_enable=false --cluster_wide ${E2E_ARGS} ${T} ${EXTRA_E2E_ARGS} ${CAPTURE_LOG}

e2e_mixer_run: out_dir
go test -v -timeout 20m ./tests/e2e/tests/mixer -args ${E2E_ARGS} ${EXTRA_E2E_ARGS}
set -o pipefail; ISTIO_PROXY_IMAGE=proxyv2 go test -v -timeout 20m ./tests/e2e/tests/mixer \
--auth_enable=false --v1alpha3=true --egress=false --ingress=false --rbac_enable=false \
--v1alpha1=false --cluster_wide ${E2E_ARGS} ${T} ${EXTRA_E2E_ARGS} ${CAPTURE_LOG}

e2e_galley_run: out_dir
go test -v -timeout 20m ./tests/e2e/tests/galley -args ${E2E_ARGS} ${EXTRA_E2E_ARGS} -use_galley_config_validator -cluster_wide
Expand Down Expand Up @@ -163,10 +165,10 @@ test/local/noauth/e2e_simple: out_dir generate_yaml-envoyv2_transition_loadbalan
--v1alpha1=false --v1alpha3=true --egress=false --ingress=false \
--rbac_enable=false --use_local_cluster --cluster_wide ${E2E_ARGS} ${T} ${EXTRA_E2E_ARGS} ${CAPTURE_LOG}

test/local/e2e_mixer: out_dir istioctl generate_yaml
set -o pipefail; go test -v -timeout 20m ./tests/e2e/tests/mixer -args \
-use_local_cluster -cluster_wide -test.v ${E2E_ARGS} ${EXTRA_E2E_ARGS} \
${CAPTURE_LOG}
test/local/e2e_mixer: out_dir generate_yaml-envoyv2_transition_loadbalancer_ingressgateway
set -o pipefail; ISTIO_PROXY_IMAGE=proxyv2 go test -v -timeout 20m ./tests/e2e/tests/mixer \
--auth_enable=false --v1alpha3=true --egress=false --ingress=false --rbac_enable=false \
--v1alpha1=false --cluster_wide ${E2E_ARGS} ${T} ${EXTRA_E2E_ARGS} ${CAPTURE_LOG}

test/local/e2e_galley: out_dir istioctl generate_yaml
set -o pipefail; go test -v -timeout 20m ./tests/e2e/tests/galley -args \
Expand Down

0 comments on commit f588e41

Please sign in to comment.