Skip to content

Commit 0d42178

Browse files
committed
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.
1 parent 86035c8 commit 0d42178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qa/reindex-from-old/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151
es090 'org.elasticsearch:elasticsearch:0.90.13@zip'
5252
}
5353

54-
if (project.javaVersion == JavaVersion.VERSION_1_9 || Os.isFamily(Os.FAMILY_WINDOWS)) {
54+
if (project.javaVersion >= JavaVersion.VERSION_1_9 || Os.isFamily(Os.FAMILY_WINDOWS)) {
5555
/* We can't run the dependencies with Java 9 so for now we'll skip the whole
5656
* thing. We can't get the pid files in windows so we skip that as well.... */
5757
integTest.enabled = false

0 commit comments

Comments
 (0)