From ab8ebc822fb85b5e6cc63be6735d94c76a42bf86 Mon Sep 17 00:00:00 2001 From: Arko Dasgupta Date: Mon, 23 Oct 2023 17:16:26 -0700 Subject: [PATCH] more tests in experimental conformance profile report Signed-off-by: Arko Dasgupta --- test/conformance/experimental_conformance_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/conformance/experimental_conformance_test.go b/test/conformance/experimental_conformance_test.go index 5415f150ca7..2abc238823d 100644 --- a/test/conformance/experimental_conformance_test.go +++ b/test/conformance/experimental_conformance_test.go @@ -95,6 +95,7 @@ func experimentalConformance(t *testing.T) { GatewayClassName: *flags.GatewayClassName, Debug: *flags.ShowDebug, CleanupBaseResources: *flags.CleanupBaseResources, + SupportedFeatures: suite.AllFeatures, SkipTests: []string{ tests.GatewaySecretInvalidReferenceGrant.ShortName, tests.HTTPRouteRewritePath.ShortName, @@ -102,7 +103,7 @@ func experimentalConformance(t *testing.T) { tests.GatewayWithAttachedRoutes.ShortName, tests.HTTPRouteBackendProtocolH2C.ShortName, }, - SupportedFeatures: sets.Set[suite.SupportedFeature]{}.Insert(suite.HTTPRouteExtendedFeatures.UnsortedList()...), + ExemptFeatures: suite.MeshCoreFeatures, }, Implementation: *implementation, ConformanceProfiles: conformanceProfiles,