Add CUSTOM_COMPILATION TestGroup

This commit is contained in:
Phillip Webb 2013-07-30 11:54:22 -07:00
parent 1b702fa6a2
commit 0a37552beb
1 changed files with 7 additions and 1 deletions

View File

@ -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
* <a href="https://jira.springsource.org/browse/SPR-10558">SPR-10558</a>
*/
CUSTOM_COMPILATION;
/**
* Parse the specified comma separates string of groups.