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

neilcsmith pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/delivery by this push:
     new 7d88fd1955 Investigate distribution sensitive ComputeImportsTest 
failures
     new d05aee81e3 Merge pull request #6235 from mbien/ci-change-coffee-brand
7d88fd1955 is described below

commit 7d88fd195598f2a3f07a39878584b7ecd3b9d461
Author: Michael Bien <[email protected]>
AuthorDate: Thu Jul 20 15:09:49 2023 +0200

    Investigate distribution sensitive ComputeImportsTest failures
    
     - tests green on temurin 11
     - setting -XX:AzCRSMode=off on zulu 11.0.20+8 didn't help
     - updating the test to add com.azul.crs.* to the ignore list
---
 .../org/netbeans/modules/java/editor/imports/ComputeImportsTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/java/java.editor/test/unit/src/org/netbeans/modules/java/editor/imports/ComputeImportsTest.java
 
b/java/java.editor/test/unit/src/org/netbeans/modules/java/editor/imports/ComputeImportsTest.java
index 871f326661..b17a2f6d8d 100644
--- 
a/java/java.editor/test/unit/src/org/netbeans/modules/java/editor/imports/ComputeImportsTest.java
+++ 
b/java/java.editor/test/unit/src/org/netbeans/modules/java/editor/imports/ComputeImportsTest.java
@@ -58,7 +58,6 @@ import org.netbeans.api.java.source.TestUtilities;
 import org.netbeans.api.java.source.test.support.MemoryValidator;
 import org.netbeans.junit.NbTestCase;
 import org.netbeans.modules.java.editor.imports.ComputeImports.Pair;
-import org.netbeans.modules.java.source.TestUtil;
 import org.netbeans.modules.java.source.usages.IndexUtil;
 import org.openide.cookies.EditorCookie;
 import org.openide.filesystems.FileObject;
@@ -96,7 +95,8 @@ public class ComputeImportsTest extends NbTestCase {
     
     private static final List<Pattern> IGNORE_PATTERNS = 
Collections.unmodifiableList(Arrays.asList(
         Pattern.compile("jdk\\..*\\.internal\\..*"),
-        Pattern.compile("org\\.graalvm\\..*")
+        Pattern.compile("org\\.graalvm\\..*"),
+        Pattern.compile("com\\.azul\\.crs\\..*") // 
https://docs.azul.com/vulnerability-detection/detailed-information/configuration-options
     ));
 
     private FileObject testSource;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to