From 958eb0f964ddef1ff1440fd10c5cb850f6ee96db Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Fri, 17 Sep 2021 14:54:09 +0100 Subject: [PATCH] Revert temporary exclusion of failing Jetty 11 tests Closes gh-27424 This reverts commit 5eac8555d9b115b40d6de6b2c8f935ffc35864de. --- build.gradle | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/build.gradle b/build.gradle index b96029abf6..c6cdde1364 100644 --- a/build.gradle +++ b/build.gradle @@ -299,18 +299,6 @@ configure([rootProject] + javaProjects) { project -> test { useJUnitPlatform() include(["**/*Tests.class", "**/*Test.class"]) - // TODO Enable excluded tests (https://github.com/spring-projects/spring-framework/issues/27424) - filter { - excludeTestsMatching("*ErrorHandlerIntegrationTests") - excludeTestsMatching("*RequestPartIntegrationTests") - excludeTestsMatching("*WebSocketConfigurationTests") - excludeTestsMatching("*WebSocketHandshakeTests") - excludeTestsMatching("*StompWebSocketIntegrationTests") - excludeTestsMatching("*RequestMappingIntegrationTests") - excludeTestsMatching("*CrossOriginAnnotationIntegrationTests") - excludeTestsMatching("*NestedRouteIntegrationTests") - excludeTestsMatching("*WebSocketIntegrationTests") - } systemProperty("java.awt.headless", "true") systemProperty("testGroups", project.properties.get("testGroups")) systemProperty("io.netty.leakDetection.level", "paranoid")