Class#getResource returns null in JDK9 b140 if security manager is enabled (was: RE: [JENKINS-EA] Lucene-Solr-master-Linux (32bit/jdk-9-ea+140) - Build # 18064 - Unstable!)

Uwe Schindler uschindler at apache.org
Mon Oct 17 17:44:05 UTC 2016


Hi,

we already had off-list contact, initiated by Rory O'Donnel - thanks!

The issue was indeed caused by symlinks. The issue here: The Jenkins server where the tests are running had a home directory that was symlinked somewhere else. All file paths during tests runs and also JAR files had the "correct" (canonical path). But the homedir was defined with the alternate, symlinked "old" path in /etc/passwd. Effect was that the test's policy file referring to the IVY cache in ~/.ivy/cache for loading JAR files used the path extracted from ${user.home}. Of course this broke.

I am sure this will hit many people, so I have some suggestions how to solve this: In short, when parsing policy files and FilePermissions inside, just "expand" the symlink to be canonic and add *both* (the symlink and the canonic path) as 2 separate FilePermissions to the collection. This spares the runtime check on every file access but still catches all "known" paths.

In addition, there is also a "bug" in the security permissions system that made the above extra permission needed. We have some third party JARs, that use Class#getResource() to load their own resources. But as getResource does not document any security exceptions or other implications, almost all code out there does not wrap with doPrivileged(). This very old bug required the extra permission to the lib/ folder. The workaround just broke.

Here is what I wrote in the private discussion:

--snip--
> Yes, this is where the problem is.
> 
> So it looks like the permission is granted in a policy file instead of being
> granted by the class loader itself. In this case, the path of the permission
> must match how you access that file.

Yes. I think the problem is that the 3rd party JAR file does not have a doPrivileged block around the getResource/openStream part, so ist running with the permissions of the calling code (a different JAR file - the test runner). IMHO, this is one of the really strange things of the security model in Java and most people do it wrong. Especially it is not clear from Class#getResource that this can be affected by any security policy! It does not even throw a declared SecurityException (because it is swallowed).

We have the extra path in our policy file for exactly that reason (to work around issues in 3rd party JARs) that don't wrap this into doPrivileged!

> I'll think about your suggestion. However, can you guarantee the code always
> accesses the file using the canonicalized path? For example, suppose the
> actual file is /x, both /a and /b symlink to it, and you grant the permission on
> /a in a policy file. Even if I canonicalize /a to /x and grant permissions on
> both /a and /x, you will still see a failure if the code access /b.

I am coming from the full text search engine people. I see the issue that you have with getting the canonical name on every file access (this slows down!). The approach the full text people use is to make "synonyms" of terms and index all of them. Somebody searching for the term will find it under any name. To be ported over to your issue: Instead of doing the canonicalized check on every access, just put *both* known file names into the "search index" (in your case policy file). Means: When parsing the policy file, create 2 file permissions: One as given in the policy and an additional one with the canonical name. This does not solve all problems, but helps around issues like the one we encountered.

I changed the setup of the Jenkins machine that hit this issue first to not have a symlinked entry in /etc/passwd - instead I placed the real path there - so ${user.home} is right. I will see if the issues are gone. Nevertheless I have just brought this into your attention, so we can figure out what could get wrong on people's systems after this change. I will also figure out with my colleagues how to solve the permission checks in 3rd party jars - especially as they did not do anything wrong - why should one wrap Class#getResource() with doPrivileged?!
--snip--

Maybe we can discuss the ideas on the public mailing list. Was quite hard to figure out (with lots of debugging output) until I discovered the problem.

Uwe

-----
Uwe Schindler
uschindler at apache.org 
ASF Member, Apache Lucene PMC / Committer
Bremen, Germany
http://lucene.apache.org/

> -----Original Message-----
> From: Sean Mullan [mailto:sean.mullan at oracle.com]
> Sent: Monday, October 17, 2016 7:33 PM
> To: Uwe Schindler <uschindler at apache.org>; dev at lucene.apache.org
> Cc: 'jdk9-dev' <jdk9-dev at openjdk.java.net>; 'Dawid Weiss'
> <dawid.weiss at cs.put.poznan.pl>; balchandra.vaidya at oracle.com
> Subject: Re: Class#getResource returns null in JDK9 b140 if security manager
> is enabled (was: RE: [JENKINS-EA] Lucene-Solr-master-Linux (32bit/jdk-9-
> ea+140) - Build # 18064 - Unstable!)
> 
> Weijun Wang is the best person to respond as he is the RE of JDK-8164705
> - right now it is the middle of the night for him, but I would expect a
> response from him once he comes online.
> 
> --Sean
> 
> On 10/16/2016 06:09 PM, Uwe Schindler wrote:
> > Hi again,
> >
> > with jdk.io.permissionsUseCanonicalPath=true it also works, so it is related
> to the new FilePermission code, so my first guess was true, the issue is JDK-
> 8164705.
> >
> > Uwe
> >
> >> (I cc'ed jdk-dev at openjdk, reader there please read the previous mails
> >> below, too).
> >>
> >> I analyzed the problem, although I don't know exactly why it happens:
> >> - On Windows it does not happen on my machine (no idea why!)
> >> - On Linux it happens when tests are running with security manager (this
> is
> >> the default for Lucene and Jenkins does this)
> >> - On Linux it does not happen if I run Lucene tests with "-
> >> Dtests.useSecurityManager=false"
> >>
> >> This makes me think it is related to this: "Remove pathname
> canonicalization
> >> from FilePermission" (https://bugs.openjdk.java.net/browse/JDK-
> 8164705)
> >>
> >> What seems to happen: The code calls Class.getResource to get back an
> URL.
> >> As the JAR file is somehow outside of the FilePermissions given to the test
> >> suite, it seems to fail. Maybe because some of the checks failed,
> >> Class.getResource then returns a null reference, because it was not able
> to
> >> access the JAR file.
> >>
> >> Were there some changes related to this: URLClassLoader and
> FilePermission
> >> checks?
> >>
> >> How should we proceed?
> >>
> >> Uwe
> >>
> >> -----
> >> Uwe Schindler
> >> uschindler at apache.org
> >> ASF Member, Apache Lucene PMC / Committer
> >> Bremen, Germany
> >> http://lucene.apache.org/
> >>
> >>> -----Original Message-----
> >>> From: Uwe Schindler [mailto:uwe at thetaphi.de]
> >>> Sent: Sunday, October 16, 2016 10:10 PM
> >>> To: dev at lucene.apache.org
> >>> Cc: dalibor.topic at oracle.com; balchandra.vaidya at oracle.com; 'Muneer
> >>> Kolarkunnu' <abdul.kolarkunnu at oracle.com>; 'Dawid Weiss'
> >>> <dawid.weiss at cs.put.poznan.pl>
> >>> Subject: RE: [JENKINS-EA] Lucene-Solr-master-Linux (32bit/jdk-9-ea+140)
> -
> >>> Build # 18064 - Unstable!
> >>>
> >>> Hi,
> >>>
> >>> I reverted the Lucene builds to build Java 9 138 for now. I will later check
> if
> >>> this also happens with build 139, which I have to download first. I will
> also
> >>> debug locally.
> >>>
> >>> The code fails because this code hits "null" on getResource() at
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>
> >>> https://github.com/morfologik/morfologik-
> >>> stemming/blob/master/morfologik-
> >>>
> >>
> polish/src/main/java/morfologik/stemming/polish/PolishStemmer.java#L32
> >>>
> >>> This is impossible to happen, because the dict file is in same package. I
> >> have
> >>> no idea why this only fails here and not at other places in Lucene. The
> main
> >>> difference looks like the use of URL instead of getResourceAsStream()
> like
> >>> other places in Lucene.
> >>>
> >>> So this seems to be a major regression in Java 9 build 140.
> >>>
> >>> Uwe
> >>>
> >>> -----
> >>> Uwe Schindler
> >>> H.-H.-Meier-Allee 63, D-28213 Bremen
> >>> http://www.thetaphi.de
> >>> eMail: uwe at thetaphi.de
> >>>
> >>>> -----Original Message-----
> >>>> From: Uwe Schindler [mailto:uwe at thetaphi.de]
> >>>> Sent: Sunday, October 16, 2016 8:38 PM
> >>>> To: dev at lucene.apache.org
> >>>> Cc: dalibor.topic at oracle.com; balchandra.vaidya at oracle.com;
> 'Muneer
> >>>> Kolarkunnu' <abdul.kolarkunnu at oracle.com>; 'Dawid Weiss'
> >>>> <dawid.weiss at cs.put.poznan.pl>; dev at lucene.apache.org
> >>>> Subject: RE: [JENKINS-EA] Lucene-Solr-master-Linux (32bit/jdk-9-
> ea+140) -
> >>>> Build # 18064 - Unstable!
> >>>>
> >>>> Hi,
> >>>>
> >>>> this seems to be a new regression in Java 9 ea build 140. Interestingly
> this
> >>>> only affects 2 libraries (morphologic and commons-codec phonetic). We
> >>> use
> >>>> loading of resources from classloaders at many places; it is unclear to
> me,
> >>>> why it only fails here. I will look into the code, but this is outside of
> >> Lucene.
> >>> I
> >>>> think it might be some crazyness like using context class loader in non-
> >>> proper
> >>>> ways or similar.
> >>>>
> >>>> Maybe it is a new bug in JDK 9 build 139 or build 140 (the last working
> one
> >>>> was build 138).
> >>>>
> >>>> Uwe
> >>>>
> >>>> -----
> >>>> Uwe Schindler
> >>>> H.-H.-Meier-Allee 63, D-28213 Bremen
> >>>> http://www.thetaphi.de
> >>>> eMail: uwe at thetaphi.de
> >>>>
> >>>>> -----Original Message-----
> >>>>> From: Policeman Jenkins Server [mailto:jenkins at thetaphi.de]
> >>>>> Sent: Sunday, October 16, 2016 8:20 PM
> >>>>> To: dev at lucene.apache.org
> >>>>> Subject: [JENKINS-EA] Lucene-Solr-master-Linux (32bit/jdk-9-ea+140) -
> >>> Build
> >>>> #
> >>>>> 18064 - Unstable!
> >>>>> Importance: Low
> >>>>>
> >>>>> Build: https://jenkins.thetaphi.de/job/Lucene-Solr-master-
> Linux/18064/
> >>>>> Java: 32bit/jdk-9-ea+140 -server -XX:+UseParallelGC
> >>>>>
> >>>>> 24 tests failed.
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testSingleTok
> >>>>> ens
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:A1C1C9729AE78F9
> >>>>> A]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikAnalyzer.<init>(Morfologik
> >>>>> Analyzer.java:52)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.getTestAnaly
> >>>>> zer(TestMorfologikAnalyzer.java:39)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testSingleTok
> >>>>> ens(TestMorfologikAnalyzer.java:44)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 39 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testRandom
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:55EF45E52DB9129
> >>>>> B]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikAnalyzer.<init>(Morfologik
> >>>>> Analyzer.java:52)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.getTestAnaly
> >>>>> zer(TestMorfologikAnalyzer.java:39)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testRandom(
> >>>>> TestMorfologikAnalyzer.java:201)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 39 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testCase
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:88AC75BEA84F2F4
> >>>>> D]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikAnalyzer.<init>(Morfologik
> >>>>> Analyzer.java:52)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.getTestAnaly
> >>>>> zer(TestMorfologikAnalyzer.java:39)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testCase(Test
> >>>>> MorfologikAnalyzer.java:111)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 39 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testLeftoverS
> >>>>> tems
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:AE90F581CE44382
> >>>>> ]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikAnalyzer.<init>(Morfologik
> >>>>> Analyzer.java:52)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.getTestAnaly
> >>>>> zer(TestMorfologikAnalyzer.java:39)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testLeftoverS
> >>>>> tems(TestMorfologikAnalyzer.java:90)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 39 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testMultipleT
> >>>>> okens
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:E0465B37C534996
> >>>>> 1]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikAnalyzer.<init>(Morfologik
> >>>>> Analyzer.java:52)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.getTestAnaly
> >>>>> zer(TestMorfologikAnalyzer.java:39)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testMultipleT
> >>>>> okens(TestMorfologikAnalyzer.java:54)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 39 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testKeyword
> >>>>> AttrTokens
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:2B64B15327EFD51
> >>>>> F]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikAnalyzer.<init>(Morfologik
> >>>>> Analyzer.java:52)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer$1.<init>(Test
> >>>>> MorfologikAnalyzer.java:174)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testKeyword
> >>>>> AttrTokens(TestMorfologikAnalyzer.java:174)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 39 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testPOSAttrib
> >>>>> ute
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:86D7B88D4CD696
> >>>>> 2B]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikAnalyzer.<init>(Morfologik
> >>>>> Analyzer.java:52)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.getTestAnaly
> >>>>> zer(TestMorfologikAnalyzer.java:39)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikAnalyzer.testPOSAttrib
> >>>>> ute(TestMorfologikAnalyzer.java:148)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 39 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikFilterFactory.testDefau
> >>>>> ltDictionary
> >>>>>
> >>>>> Error Message:
> >>>>> Could not read dictionary data.
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.RuntimeException: Could not read dictionary data.
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([27A360EA9CD9A4E8:77E7676752C75E7
> >>>>> 1]:0)
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.MorfologikFilterFactory.inform(Morfo
> >>>>> logikFilterFactory.java:85)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.morfologik.TestMorfologikFilterFactory.testDefau
> >>>>> ltDictionary(TestMorfologikFilterFactory.java:56)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.io.IOException: Polish dictionary resource not found.
> >>>>> 	at
> >>>>>
> >>>
> morfologik.stemming.polish.PolishStemmer.<init>(PolishStemmer.java:34)
> >>>>> 	... 38 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testNumbers
> >>>>>
> >>>>> Error Message:
> >>>>>
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.ExceptionInInitializerError
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:E3117A948221F6D
> >>>>> C]:0)
> >>>>> 	at
> >>>>> org.apache.commons.codec.language.bm.Lang.<clinit>(Lang.java:102)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter$1.createCompon
> >>>>> ents(TestBeiderMorseFilter.java:49)
> >>>>> 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:358)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:388)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testNumbers(Tes
> >>>>> tBeiderMorseFilter.java:101)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.lang.IllegalArgumentException: Unable to resolve
> >>> required
> >>>>> resource:
> >> org/apache/commons/codec/language/bm/ash_languages.txt
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.Languages.getInstance(Languages.
> >>>>> java:175)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.Languages.<clinit>(Languages.java:
> >>>>> 161)
> >>>>> 	... 45 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testCustomAttrib
> >>>>> ute
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> org.apache.commons.codec.language.bm.Lang
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:D36838D48CB19E1
> >>>>> 4]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testCustomAttrib
> >>>>> ute(TestBeiderMorseFilter.java:128)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testRandom
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> org.apache.commons.codec.language.bm.Lang
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:1C94D74A60E4B53
> >>>>> F]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter$1.createCompon
> >>>>> ents(TestBeiderMorseFilter.java:49)
> >>>>> 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkRandomData(Ba
> >>>>> seTokenStreamTestCase.java:511)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkRandomData(Ba
> >>>>> seTokenStreamTestCase.java:434)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testRandom(Test
> >>>>> BeiderMorseFilter.java:109)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testLanguageSet
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> org.apache.commons.codec.language.bm.Lang
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:6D67491F0653B4C
> >>>>> A]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter$3.createCompon
> >>>>> ents(TestBeiderMorseFilter.java:86)
> >>>>> 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:358)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:388)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testLanguageSet(
> >>>>> TestBeiderMorseFilter.java:91)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testEmptyTerm
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> org.apache.commons.codec.language.bm.Lang
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:ACE4AA1785957C5
> >>>>> D]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter$4.createCompon
> >>>>> ents(TestBeiderMorseFilter.java:117)
> >>>>> 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:358)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:368)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkOneTerm(BaseT
> >>>>> okenStreamTestCase.java:429)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testEmptyTerm(T
> >>>>> estBeiderMorseFilter.java:120)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testBasicUsage
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> org.apache.commons.codec.language.bm.Lang
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:35CB4BA05D8C5C
> >>>>> AC]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter$1.createCompon
> >>>>> ents(TestBeiderMorseFilter.java:49)
> >>>>> 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:358)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:388)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilter.testBasicUsage(T
> >>>>> estBeiderMorseFilter.java:63)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testBasics
> >>>>>
> >>>>> Error Message:
> >>>>>
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.ExceptionInInitializerError
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:53005C69E96A5D3
> >>>>> C]:0)
> >>>>> 	at
> >>>>> org.apache.commons.codec.language.bm.Lang.<clinit>(Lang.java:102)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.BeiderMorseFilterFactory.<init>(Beider
> >>>>> MorseFilterFactory.java:56)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testBasics
> >>>>> (TestBeiderMorseFilterFactory.java:29)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.lang.IllegalArgumentException: Unable to resolve
> >>> required
> >>>>> resource:
> >> org/apache/commons/codec/language/bm/ash_languages.txt
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.Languages.getInstance(Languages.
> >>>>> java:175)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.Languages.<clinit>(Languages.java:
> >>>>> 161)
> >>>>> 	... 41 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testOptio
> >>>>> ns
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> org.apache.commons.codec.language.bm.Lang
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:CCFC21040ED1AB3
> >>>>> A]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.BeiderMorseFilterFactory.<init>(Beider
> >>>>> MorseFilterFactory.java:56)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testOptio
> >>>>> ns(TestBeiderMorseFilterFactory.java:54)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testLangu
> >>>>> ageSet
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> org.apache.commons.codec.language.bm.Lang
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:6D67491F0653B4C
> >>>>> A]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.BeiderMorseFilterFactory.<init>(Beider
> >>>>> MorseFilterFactory.java:56)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testLangu
> >>>>> ageSet(TestBeiderMorseFilterFactory.java:41)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testBogus
> >>>>> Arguments
> >>>>>
> >>>>> Error Message:
> >>>>> Unexpected exception type, expected IllegalArgumentException
> >>>>>
> >>>>> Stack Trace:
> >>>>> junit.framework.AssertionFailedError: Unexpected exception type,
> >>>> expected
> >>>>> IllegalArgumentException
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:8BC3C48769987F7
> >>>>> B]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.LuceneTestCase.expectThrows(LuceneTestCase.java:2
> >>>>> 681)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.testBogus
> >>>>> Arguments(TestBeiderMorseFilterFactory.java:65)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.bm.Lang
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:317)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.bm.PhoneticEngine.<init>(PhoneticEng
> >>>>> ine.java:293)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.BeiderMorseFilterFactory.<init>(Beider
> >>>>> MorseFilterFactory.java:56)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestBeiderMorseFilterFactory.lambda$t
> >>>>> estBogusArguments$0(TestBeiderMorseFilterFactory.java:66)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.LuceneTestCase.expectThrows(LuceneTestCase.java:2
> >>>>> 676)
> >>>>> 	... 37 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter.testE
> >>>>> mptyTerm
> >>>>>
> >>>>> Error Message:
> >>>>>
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.ExceptionInInitializerError
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:ACE4AA1785957C5
> >>>>> D]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilter.<init>(Dai
> >>>>> tchMokotoffSoundexFilter.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter$3.cre
> >>>>> ateComponents(TestDaitchMokotoffSoundexFilter.java:80)
> >>>>> 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:358)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.assertAnalyzesTo(Bas
> >>>>> eTokenStreamTestCase.java:368)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkOneTerm(BaseT
> >>>>> okenStreamTestCase.java:429)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter.testE
> >>>>> mptyTerm(TestDaitchMokotoffSoundexFilter.java:83)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreT
> >>>>> estSuites.java:54)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at java.lang.Thread.run(java.base at 9-ea/Thread.java:843)
> >>>>> Caused by: java.lang.IllegalArgumentException: Unable to load
> >> resource:
> >>>>> org/apache/commons/codec/language/dmrules.txt
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.commons.codec.language.DaitchMokotoffSoundex.<clinit>(Daitc
> >>>>> hMokotoffSoundex.java:231)
> >>>>> 	... 44 more
> >>>>>
> >>>>>
> >>>>> FAILED:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter.testR
> >>>>> andomStrings
> >>>>>
> >>>>> Error Message:
> >>>>> Could not initialize class
> >>>>> org.apache.commons.codec.language.DaitchMokotoffSoundex
> >>>>>
> >>>>> Stack Trace:
> >>>>> java.lang.NoClassDefFoundError: Could not initialize class
> >>>>> org.apache.commons.codec.language.DaitchMokotoffSoundex
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:E651F2FB7280547
> >>>>> 9]:0)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilter.<init>(Dai
> >>>>> tchMokotoffSoundexFilter.java:38)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter$1.cre
> >>>>> ateComponents(TestDaitchMokotoffSoundexFilter.java:56)
> >>>>> 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkRandomData(Ba
> >>>>> seTokenStreamTestCase.java:511)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkRandomData(Ba
> >>>>> seTokenStreamTestCase.java:434)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter.testR
> >>>>> andomStrings(TestDaitchMokotoffSoundexFilter.java:60)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>> 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>> 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>> 	at java.lang.reflect.Method.invoke(java.base at 9-
> >>>>> ea/Method.java:535)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> >>>>> dRunner.java:1764)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> >>>>> mizedRunner.java:871)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
> >>>>> mizedRunner.java:907)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
> >>>>> omizedRunner.java:921)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> >>>>> SetupTeardownChained.java:49)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThr
> >>>>> eadAndTestName.java:48)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAfterMaxFailures.java:64)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.r
> >>>>> un(ThreadLeakControl.java:367)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> >>>>> (ThreadLeakControl.java:809)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> >>>>> eakControl.java:460)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> >>>>> domizedRunner.java:880)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> >>>>> mizedRunner.java:781)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> >>>>> mizedRunner.java:816)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> >>>>> mizedRunner.java:827)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAf
> >>>>> terRule.java:45)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCla
> >>>>> ssName.java:41)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> >>>>>
> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(State
> >>>>> mentAdapter.java:36)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAsse
> >>>>> rtionsRequired.java:53)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.
> >>>>> java:47)
> >>>>> 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleI
> >>>>> gnoreAft
> >>>>>
> >>>>> [...truncated too long message...]
> >>>>>
> >>>>> dtesting.SeedInfo.seed([6ED8F245D184034C:E651F2FB72805479]:0)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilter.<init>(Dai
> >>>>> tchMokotoffSoundexFilter.java:38)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter$1.cre
> >>>>> ateComponents(TestDaitchMokotoffSoundexFilter.java:56)
> >>>>>    [junit4]    > 	at
> >>>>> org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:198)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkResetException(
> >>>>> BaseTokenStreamTestCase.java:392)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkRandomData(Ba
> >>>>> seTokenStreamTestCase.java:511)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.BaseTokenStreamTestCase.checkRandomData(Ba
> >>>>> seTokenStreamTestCase.java:434)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter.testR
> >>>>> andomStrings(TestDaitchMokotoffSoundexFilter.java:60)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>>    [junit4]    > 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>>    [junit4]    > 	at java.lang.Thread.run(java.base at 9-
> >>> ea/Thread.java:843)
> >>>>>    [junit4]   2> NOTE: reproduce with: ant test  -
> >>>>> Dtestcase=TestDaitchMokotoffSoundexFilter -
> >>>> Dtests.method=testAlgorithms
> >>>>> -Dtests.seed=6ED8F245D184034C -Dtests.multiplier=3 -
> Dtests.slow=true
> >> -
> >>>>> Dtests.locale=ps -Dtests.timezone=America/Antigua -
> >> Dtests.asserts=true -
> >>>>> Dtests.file.encoding=UTF-8
> >>>>>    [junit4] ERROR   0.00s J0 |
> >>>> TestDaitchMokotoffSoundexFilter.testAlgorithms
> >>>>> <<<
> >>>>>    [junit4]    > Throwable #1: java.lang.NoClassDefFoundError: Could
> not
> >>>>> initialize class
> >>>> org.apache.commons.codec.language.DaitchMokotoffSoundex
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:3823E49E787418B
> >>>>> 7]:0)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilter.<init>(Dai
> >>>>> tchMokotoffSoundexFilter.java:38)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter.asser
> >>>>> tAlgorithm(TestDaitchMokotoffSoundexFilter.java:46)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilter.testAl
> >>>>> gorithms(TestDaitchMokotoffSoundexFilter.java:35)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>>    [junit4]    > 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>>    [junit4]    > 	at java.lang.Thread.run(java.base at 9-
> >>> ea/Thread.java:843)
> >>>>>    [junit4]   2> NOTE: test params are: codec=Lucene70,
> >>>> sim=ClassicSimilarity,
> >>>>> locale=ps, timezone=America/Antigua
> >>>>>    [junit4]   2> NOTE: Linux 4.4.0-36-generic i386/Oracle Corporation 9-
> ea
> >>>> (32-
> >>>>> bit)/cpus=12,threads=1,free=47297104,total=81526784
> >>>>>    [junit4]   2> NOTE: All tests run in this JVM:
> [TestPhoneticFilterFactory,
> >>>>> TestDoubleMetaphoneFilterFactory,
> TestDaitchMokotoffSoundexFilter]
> >>>>>    [junit4] Completed [5/8 (3!)] on J0 in 0.04s, 3 tests, 3 errors <<<
> >>> FAILURES!
> >>>>>
> >>>>> [...truncated 1 lines...]
> >>>>>    [junit4] Suite:
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilterFactor
> >>>>> y
> >>>>>    [junit4]   2> NOTE: reproduce with: ant test  -
> >>>>> Dtestcase=TestDaitchMokotoffSoundexFilterFactory -
> >>>>> Dtests.method=testDefaults -Dtests.seed=6ED8F245D184034C -
> >>>>> Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=guz -
> >>>>> Dtests.timezone=America/Indiana/Marengo -Dtests.asserts=true -
> >>>>> Dtests.file.encoding=UTF-8
> >>>>>    [junit4] ERROR   0.02s J0 |
> >>>>> TestDaitchMokotoffSoundexFilterFactory.testDefaults <<<
> >>>>>    [junit4]    > Throwable #1: java.lang.NoClassDefFoundError: Could
> not
> >>>>> initialize class
> >>>> org.apache.commons.codec.language.DaitchMokotoffSoundex
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:C17CBC6FF981506
> >>>>> 0]:0)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilter.<init>(Dai
> >>>>> tchMokotoffSoundexFilter.java:38)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilterFactory.cr
> >>>>> eate(DaitchMokotoffSoundexFilterFactory.java:63)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilterFactor
> >>>>> y.testDefaults(TestDaitchMokotoffSoundexFilterFactory.java:36)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>>    [junit4]    > 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>>    [junit4]    > 	at java.lang.Thread.run(java.base at 9-
> >>> ea/Thread.java:843)
> >>>>>    [junit4]   2> NOTE: reproduce with: ant test  -
> >>>>> Dtestcase=TestDaitchMokotoffSoundexFilterFactory -
> >>>>> Dtests.method=testSettingInject -Dtests.seed=6ED8F245D184034C -
> >>>>> Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=guz -
> >>>>> Dtests.timezone=America/Indiana/Marengo -Dtests.asserts=true -
> >>>>> Dtests.file.encoding=UTF-8
> >>>>>    [junit4] ERROR   0.00s J0 |
> >>>>> TestDaitchMokotoffSoundexFilterFactory.testSettingInject <<<
> >>>>>    [junit4]    > Throwable #1: java.lang.NoClassDefFoundError: Could
> not
> >>>>> initialize class
> >>>> org.apache.commons.codec.language.DaitchMokotoffSoundex
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([6ED8F245D184034C:8B47767F15CB356
> >>>>> 1]:0)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilter.<init>(Dai
> >>>>> tchMokotoffSoundexFilter.java:38)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilterFactory.cr
> >>>>> eate(DaitchMokotoffSoundexFilterFactory.java:63)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.analysis.phonetic.TestDaitchMokotoffSoundexFilterFactor
> >>>>> y.testSettingInject(TestDaitchMokotoffSoundexFilterFactory.java:49)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>>    [junit4]    > 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>>    [junit4]    > 	at java.lang.Thread.run(java.base at 9-
> >>> ea/Thread.java:843)
> >>>>>    [junit4]   2> NOTE: test params are: codec=Asserting(Lucene70): {},
> >>>>> docValues:{}, maxPointsInLeafNode=1560,
> >>>>> maxMBSortInHeap=6.407822741000916, sim=ClassicSimilarity,
> >>> locale=guz,
> >>>>> timezone=America/Indiana/Marengo
> >>>>>    [junit4]   2> NOTE: Linux 4.4.0-36-generic i386/Oracle Corporation 9-
> ea
> >>>> (32-
> >>>>> bit)/cpus=12,threads=1,free=103729528,total=115605504
> >>>>>    [junit4]   2> NOTE: All tests run in this JVM:
> [TestPhoneticFilterFactory,
> >>>>> TestDoubleMetaphoneFilterFactory,
> TestDaitchMokotoffSoundexFilter,
> >>>>> TestDaitchMokotoffSoundexFilterFactory]
> >>>>>    [junit4] Completed [6/8 (4!)] on J0 in 0.06s, 3 tests, 2 errors <<<
> >>> FAILURES!
> >>>>>
> >>>>> [...truncated 1966 lines...]
> >>>>>    [junit4] Suite:
> >>>> org.apache.lucene.benchmark.byTask.feeds.TestHtmlParser
> >>>>>    [junit4]   2> NOTE: reproduce with: ant test  -
> >> Dtestcase=TestHtmlParser -
> >>>>> Dtests.method=testEntities -Dtests.seed=7EC5D3E55917236B -
> >>>>> Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=es-PH -
> >>>>> Dtests.timezone=Canada/Mountain -Dtests.asserts=true -
> >>>>> Dtests.file.encoding=ISO-8859-1
> >>>>>    [junit4] ERROR   0.01s J1 | TestHtmlParser.testEntities <<<
> >>>>>    [junit4]    > Throwable #1: java.lang.ExceptionInInitializerError
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> __randomizedtesting.SeedInfo.seed([7EC5D3E55917236B:EDC240C50B38B8B
> >>>>> 2]:0)
> >>>>>    [junit4]    > 	at
> >>>>>
> >> org.cyberneko.html.HTMLScanner.scanEntityRef(HTMLScanner.java:1405)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.cyberneko.html.HTMLScanner$ContentScanner.scan(HTMLScanner.java:
> >>>>> 2007)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>
> org.cyberneko.html.HTMLScanner.scanDocument(HTMLScanner.java:918)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:499)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:452)
> >>>>>    [junit4]    > 	at
> >>> org.apache.xerces.parsers.XMLParser.parse(Unknown
> >>>>> Source)
> >>>>>    [junit4]    > 	at
> >>>>> org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.benchmark.byTask.feeds.DemoHTMLParser$Parser.<init>
> >>>>> (DemoHTMLParser.java:140)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.benchmark.byTask.feeds.DemoHTMLParser$Parser.<init>
> >>>>> (DemoHTMLParser.java:51)
> >>>>>    [junit4]    > 	at
> >>>>>
> >>>>
> >>>
> >>
> org.apache.lucene.benchmark.byTask.feeds.TestHtmlParser.testEntities(Test
> >>>>> HtmlParser.java:37)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(java.base at 9-
> >>>>> ea/Native Method)
> >>>>>    [junit4]    > 	at
> >>>>> jdk.internal.reflect.NativeMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/NativeMethodAccessorImpl.java:62)
> >>>>>    [junit4]    > 	at
> >>>>>
> >> jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.base at 9-
> >>>>> ea/DelegatingMethodAccessorImpl.java:43)
> >>>>>    [junit4]    > 	at java.lang.Thread.run(java.base at 9-
> >>> ea/Thread.java:843)
> >>>>>    [junit4]    > Caused by: java.lang.NullPointerException: inStream
> >>>> parameter
> >>>>> is null
> >>>>>    [junit4]    > 	at java.util.Objects.requireNonNull(java.base at 9-
> >>>>> ea/Objects.java:246)
> >>>>>    [junit4]    > 	at java.util.Properties.load(java.base at 9-
> >>>>> ea/Properties.java:364)
> >>>>>    [junit4]    > 	at
> >>>>> org.cyberneko.html.HTMLEntities.load0(HTMLEntities.java:99)
> >>>>>    [junit4]    > 	at
> >>>>> org.cyberneko.html.HTMLEntities.<clinit>(HTMLEntities.java:52)
> >>>>>    [junit4]    > 	... 46 more
> >>>>>    [junit4]   2> NOTE: test params are: codec=Asserting(Lucene70),
> >>>>> sim=RandomSimilarity(queryNorm=false): {}, locale=es-PH,
> >>>>> timezone=Canada/Mountain
> >>>>>    [junit4]   2> NOTE: Linux 4.4.0-36-generic i386/Oracle Corporation 9-
> ea
> >>>> (32-
> >>>>> bit)/cpus=12,threads=1,free=47165080,total=81526784
> >>>>>    [junit4]   2> NOTE: All tests run in this JVM: [SearchWithSortTaskTest,
> >>>>> TestHtmlParser]
> >>>>>    [junit4] Completed [4/18 (1!)] on J1 in 0.10s, 12 tests, 1 error <<<
> >>>> FAILURES!
> >>>>>
> >>>>> [...truncated 56873 lines...]
> >>>>
> >>>>
> >>>>
> >>>> ---------------------------------------------------------------------
> >>>> To unsubscribe, e-mail: dev-unsubscribe at lucene.apache.org
> >>>> For additional commands, e-mail: dev-help at lucene.apache.org
> >>>
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: dev-unsubscribe at lucene.apache.org
> >>> For additional commands, e-mail: dev-help at lucene.apache.org
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: dev-unsubscribe at lucene.apache.org
> >> For additional commands, e-mail: dev-help at lucene.apache.org
> >



More information about the jdk9-dev mailing list