SOLR-2378: Ignoring benchmark test (enabled accidently in cleanup commit).

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1087995 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dawid Weiss 2011-04-02 10:52:48 +00:00
parent fd34f487c0
commit e9bee5e152
1 changed files with 2 additions and 7 deletions

View File

@ -25,6 +25,7 @@ import org.apache.solr.spelling.suggest.jaspell.JaspellLookup;
import org.apache.solr.spelling.suggest.tst.TSTLookup;
import org.apache.solr.util.TermFreqIterator;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import com.google.common.collect.Lists;
@ -139,14 +140,8 @@ public class SuggesterTest extends SolrTestCaseJ4 {
long lookupTime;
}
@Test
@Test @Ignore
public void testBenchmark() throws Exception {
// this benchmark is very time consuming
boolean doTest = true;
if (!doTest) {
return;
}
final List<Class<? extends Lookup>> benchmarkClasses = Lists.newArrayList();
benchmarkClasses.add(JaspellLookup.class);
benchmarkClasses.add(TSTLookup.class);