From 0a37552bebf454619479e948f5d06c127bc562d5 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 30 Jul 2013 11:54:22 -0700 Subject: [PATCH] Add CUSTOM_COMPILATION TestGroup --- .../test/java/org/springframework/tests/TestGroup.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/spring-core/src/test/java/org/springframework/tests/TestGroup.java b/spring-core/src/test/java/org/springframework/tests/TestGroup.java index 9556e5faa4..c135e8e68a 100644 --- a/spring-core/src/test/java/org/springframework/tests/TestGroup.java +++ b/spring-core/src/test/java/org/springframework/tests/TestGroup.java @@ -59,8 +59,14 @@ public enum TestGroup { /** * Tests that should only be run on the continuous integration server. */ - CI; + CI, + /** + * Tests that require custom compilation beyond that of the standard JDK. This helps to + * allow running tests that will otherwise fail when using JDK > 1.8 b88. See + * SPR-10558 + */ + CUSTOM_COMPILATION; /** * Parse the specified comma separates string of groups.