donnerpeter commented on a change in pull request #2319: URL: https://github.com/apache/lucene-solr/pull/2319#discussion_r571923906
########## File path: lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestHunspellRepositoryTestCases.java ########## @@ -36,9 +37,18 @@ */ @RunWith(Parameterized.class) public class TestHunspellRepositoryTestCases { + private static final Set<String> IGNORED = + Set.of( + "hu", // Hungarian is hard: a lot of its rules are hardcoded in Hunspell code, not aff/dic Review comment: The irony is that "hun" in "hunspell" means it was initially created for Hungarian, but its declarative options still aren't enough to describe it :( ########## File path: lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestHunspellRepositoryTestCases.java ########## @@ -64,7 +74,12 @@ public TestHunspellRepositoryTestCases(String testName, Path pathPrefix) { } @Test - public void test() throws IOException, ParseException { - SpellCheckerTest.checkSpellCheckerExpectations(pathPrefix, false); + public void test() throws Throwable { + ThrowingRunnable test = () -> SpellCheckerTest.checkSpellCheckerExpectations(pathPrefix); + if (IGNORED.contains(testName)) { Review comment: Renamed, thanks! ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org