diff --git a/conformance/utils/flags/flags.go b/conformance/utils/flags/flags.go index 2240b932c9..e3e2bcec3e 100644 --- a/conformance/utils/flags/flags.go +++ b/conformance/utils/flags/flags.go @@ -24,10 +24,10 @@ import ( ) var ( - GatewayClassName = flag.String("gateway-class", "gateway-conformance", "Name of GatewayClass to use for tests") - ShowDebug = flag.Bool("debug", false, "Whether to print debug logs") - CleanupBaseResources = flag.Bool("cleanup-base-resources", true, "Whether to cleanup base test resources after the run") - SupportedFeatures = flag.String("supported-features", "", "Supported features included in conformance tests suites") - ExemptFeatures = flag.String("exempt-features", "", "Exempt Features excluded from conformance tests suites") - EnableAllSupportedFeatures = flag.Bool("all-features", false, "Whether to enable all supported feature conformance tests") + GatewayClassName = flag.String("gateway-class", "gateway-conformance", "Name of GatewayClass to use for tests") + ShowDebug = flag.Bool("debug", false, "Whether to print debug logs") + CleanupBaseResources = flag.Bool("cleanup-base-resources", true, "Whether to cleanup base test resources after the run") + SupportedFeatures = flag.String("supported-features", "", "Supported features included in conformance tests suites") + ExemptFeatures = flag.String("exempt-features", "", "Exempt Features excluded from conformance tests suites") + EnableAllSupportedFeatures = flag.Bool("all-features", false, "Whether to enable all supported feature conformance tests") ) diff --git a/conformance/utils/suite/suite.go b/conformance/utils/suite/suite.go index 1704a5ab37..b9df0d4920 100644 --- a/conformance/utils/suite/suite.go +++ b/conformance/utils/suite/suite.go @@ -80,18 +80,18 @@ var StandardCoreFeatures = map[SupportedFeature]bool{ // AllFeatures contains all the supported features and can be used to run all // conformance tests with `all-features` flag. var AllFeatures = map[SupportedFeature]bool{ - SupportReferenceGrant: true, - SupportTLSRoute: true, - SupportHTTPRouteQueryParamMatching: true, - SupportHTTPRouteMethodMatching: true, - SupportHTTPResponseHeaderModification: true, - SupportRouteDestinationPortMatching: true, + SupportReferenceGrant: true, + SupportTLSRoute: true, + SupportHTTPRouteQueryParamMatching: true, + SupportHTTPRouteMethodMatching: true, + SupportHTTPResponseHeaderModification: true, + SupportRouteDestinationPortMatching: true, SupportGatewayClassObservedGenerationBump: true, - SupportHTTPRoutePortRedirect: true, - SupportHTTPRouteSchemeRedirect: true, - SupportHTTPRoutePathRedirect: true, - SupportHTTPRouteHostRewrite: true, - SupportHTTPRoutePathRewrite: true, + SupportHTTPRoutePortRedirect: true, + SupportHTTPRouteSchemeRedirect: true, + SupportHTTPRoutePathRedirect: true, + SupportHTTPRouteHostRewrite: true, + SupportHTTPRoutePathRewrite: true, } // ConformanceTestSuite defines the test suite used to run Gateway API