Disable reindex from old tests on JDK 10
We disable these tests because the JVM flags we use will not start with JDK 10. Since we do not support running these old versions on newer JDKs anyway, this commit disables testing of these when running on JDK 10.
This commit is contained in:
parent
436a243e3c
commit
87819a0a7f
|
@ -51,7 +51,7 @@ dependencies {
|
|||
es090 'org.elasticsearch:elasticsearch:0.90.13@zip'
|
||||
}
|
||||
|
||||
if (project.javaVersion == JavaVersion.VERSION_1_9 || Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||
if (project.javaVersion >= JavaVersion.VERSION_1_9 || Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||
/* We can't run the dependencies with Java 9 so for now we'll skip the whole
|
||||
* thing. We can't get the pid files in windows so we skip that as well.... */
|
||||
integTest.enabled = false
|
||||
|
|
Loading…
Reference in New Issue