You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2020/10/27 22:28:38 UTC

[lucene-solr] branch master updated: LUCENE-9587: Add '--illegal-access=deny' to test runner (#2039)

This is an automated email from the ASF dual-hosted git repository.

uschindler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ce4b98  LUCENE-9587: Add '--illegal-access=deny' to test runner (#2039)
9ce4b98 is described below

commit 9ce4b98af2155ba9d6d41e12ff12017c557a9ea4
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Tue Oct 27 23:28:25 2020 +0100

    LUCENE-9587: Add '--illegal-access=deny' to test runner (#2039)
---
 gradle/testing/defaults-tests.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gradle/testing/defaults-tests.gradle b/gradle/testing/defaults-tests.gradle
index 2ceb436..d9bfdd4 100644
--- a/gradle/testing/defaults-tests.gradle
+++ b/gradle/testing/defaults-tests.gradle
@@ -105,6 +105,7 @@ allprojects {
       ignoreFailures = resolvedTestOption("tests.haltonfailure").toBoolean() == false
 
       jvmArgs Commandline.translateCommandline(resolvedTestOption("tests.jvmargs"))
+      jvmArgs '--illegal-access=deny'
 
       systemProperty 'java.util.logging.config.file', file("${resources}/logging.properties")
       systemProperty 'java.awt.headless', 'true'