Add CUSTOM_COMPILATION TestGroup
This commit is contained in:
parent
1b702fa6a2
commit
0a37552beb
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue