I have downloaded Solr 8.2.2 source code. I am using a Mac running Catalina. Using ANT with “clean compile test” everything is good.
From Intellij I tried running tests and several failed.
Here is an example:
package org.apache.solr.analysis;
...
public class TestWordDelimiterFilterFactory
...
@Test
public void testIgnoreCaseChange()
...
assertQ("case change",
req("subword:(good jon)")
,"//result[@numFound=1]"
);
Should I worry about that?
What should I do?
Thank you.
