disable test until we can fix syn filter to consume graphs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1311937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-04-10 19:18:15 +00:00
parent 33cdb0c9a9
commit a9535971f3
1 changed files with 6 additions and 1 deletions

View File

@ -447,7 +447,11 @@ public class TestSynonymMapFilter extends BaseTokenStreamTestCase {
checkRandomData(random, analyzer, 1000*RANDOM_MULTIPLIER);
}
}
// NOTE: this is an invalid test... SynFilter today can't
// properly consume a graph... we can re-enable this once
// we fix that...
/*
// Adds MockGraphTokenFilter before SynFilter:
public void testRandom2GraphBefore() throws Exception {
final int numIters = atLeast(10);
@ -472,6 +476,7 @@ public class TestSynonymMapFilter extends BaseTokenStreamTestCase {
checkRandomData(random, analyzer, 1000*RANDOM_MULTIPLIER);
}
}
*/
// Adds MockGraphTokenFilter after SynFilter:
public void testRandom2GraphAfter() throws Exception {