Skip to content

Commit d109fb9

Browse files
Merge pull request #15778 from deads2k/backport-test-01
Automatic merge from submit-queue make the router integration tests run as part of test-end-to-end Fixes #15771. Maybe.
2 parents fbbe981 + 84a743d commit d109fb9

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,21 @@ all build:
4545
#
4646
# Example:
4747
# make build-tests
48-
build-tests: build-extended-test build-integration-test
48+
build-tests: build-extended-test build-integration-test build-router-e2e-test
4949
.PHONY: build-tests
5050

5151
build-extended-test:
5252
hack/build-go.sh test/extended/extended.test
5353
.PHONY: build-extended-test
5454

55-
build-integration-test:
55+
build-integration-test: build-router-e2e-test
5656
hack/build-go.sh test/integration/integration.test
5757
.PHONY: build-integration-test
5858

59+
build-router-e2e-test:
60+
hack/build-go.sh test/end-to-end/end-to-end.test
61+
.PHONY: build-router-e2e-test
62+
5963
# Run core verification and all self contained tests.
6064
#
6165
# Example:
@@ -187,6 +191,7 @@ test-cmd: build
187191
# Example:
188192
# make test-end-to-end
189193
test-end-to-end: build
194+
KUBE_COVER=" " KUBE_RACE=" " OS_TEST_PACKAGE=test/end-to-end hack/test-integration.sh
190195
hack/test-end-to-end.sh
191196
.PHONY: test-end-to-end
192197

test/integration/router_test.go renamed to test/end-to-end/router_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package integration
1+
package endtoend
22

33
import (
44
"crypto/tls"

0 commit comments

Comments
 (0)