We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb8e639 commit 33a5cd3Copy full SHA for 33a5cd3
buildSrc/src/main/groovy/org/elasticsearch/gradle/BuildPlugin.groovy
@@ -947,14 +947,12 @@ class BuildPlugin implements Plugin<Project> {
947
'-XX:+HeapDumpOnOutOfMemoryError',
948
"-XX:HeapDumpPath=$heapdumpDir"
949
950
+ jvmArgs System.getProperty('tests.jvm.argline', '').split(" ")
951
+
952
if (project.runtimeJavaVersion >= JavaVersion.VERSION_1_9) {
953
jvmArgs '--illegal-access=warn'
954
}
955
- if (System.getProperty('tests.jvm.argline')) {
- jvmArgs System.getProperty('tests.jvm.argline').split(" ")
956
- }
957
-
958
if (Boolean.parseBoolean(System.getProperty('tests.asserts', 'true'))) {
959
jvmArgs '-ea', '-esa'
960
0 commit comments