diff --git a/test/conformance/conformance_test.go b/test/conformance/conformance_test.go index 100432bf80..898c1a5cd9 100644 --- a/test/conformance/conformance_test.go +++ b/test/conformance/conformance_test.go @@ -38,7 +38,15 @@ func TestGatewayAPIConformance(t *testing.T) { }, }) cSuite.Setup(t) - egTests := []suite.ConformanceTest{tests.HTTPRouteSimpleSameNamespace} + egTests := []suite.ConformanceTest{ + tests.HTTPRouteSimpleSameNamespace, + tests.HTTPRouteRequestHeaderModifier, + tests.HTTPRouteQueryParamMatching, + tests.HTTPRouteInvalidCrossNamespaceParentRef, + tests.HTTPExactPathMatching, + tests.HTTPRouteCrossNamespace, + tests.HTTPRouteMatchingAcrossRoutes, + } cSuite.Run(t, egTests) }