From 76b55509dd4a90fcad4ab027637b9d0d82ada30e Mon Sep 17 00:00:00 2001 From: Peter Gromov Date: Thu, 11 Feb 2021 09:14:29 +0100 Subject: [PATCH] LUCENE-9759: Hunspell: add more to TestHunspellRepositoryTestCases.EXPECTED_FAILURES (#2341) --- .../analysis/hunspell/TestHunspellRepositoryTestCases.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestHunspellRepositoryTestCases.java b/lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestHunspellRepositoryTestCases.java index aa1f794757f..6bf0297b67b 100644 --- a/lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestHunspellRepositoryTestCases.java +++ b/lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestHunspellRepositoryTestCases.java @@ -41,7 +41,10 @@ public class TestHunspellRepositoryTestCases { Set.of( "hu", // Hungarian is hard: a lot of its rules are hardcoded in Hunspell code, not aff/dic "morph", // we don't do morphological analysis yet + "opentaal_keepcase", // Hunspell bug: https://github.com/hunspell/hunspell/issues/712 + "forbiddenword", // needs https://github.com/hunspell/hunspell/pull/713 PR to be merged "nepali", // not supported yet + "utf8_nonbmp", // code points not supported yet "phone" // not supported yet, used only for suggestions in en_ZA ); private final String testName;