SOLR-10032: Ignore tests that run no test methods.

This commit is contained in:
markrmiller 2017-01-31 19:27:03 -05:00
parent 7467866364
commit 730df22e40
3 changed files with 4 additions and 2 deletions

View File

@ -45,6 +45,7 @@ import java.util.Map;
* @see org.apache.solr.handler.dataimport.MailEntityProcessor
* @since solr 1.4
*/
@Ignore("Needs a Mock Mail Server to work")
public class TestMailEntityProcessor extends AbstractDataImportHandlerTestCase {
// Credentials

View File

@ -25,6 +25,7 @@ import org.apache.hadoop.io.Text;
import org.apache.hadoop.mrunit.mapreduce.MapDriver;
import org.apache.hadoop.mrunit.types.Pair;
import org.apache.lucene.util.Constants;
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
import org.apache.solr.common.SolrInputDocument;
import org.apache.solr.hadoop.morphline.MorphlineMapper;
import org.apache.solr.util.BadHdfsThreadsFilter;
@ -36,6 +37,7 @@ import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
@ThreadLeakFilters(defaultFilters = true, filters = {
BadHdfsThreadsFilter.class // hdfs currently leaks thread(s)
})
@AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/SOLR-9220")
public class MorphlineMapperTest extends MRUnitBase {
@BeforeClass
@ -44,7 +46,6 @@ public class MorphlineMapperTest extends MRUnitBase {
}
@Test
@AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/SOLR-9220")
public void testMapper() throws Exception {
MorphlineMapper mapper = new MorphlineMapper();
MapDriver<LongWritable, Text, Text, SolrInputDocumentWritable> mapDriver = MapDriver.newMapDriver(mapper);;

View File

@ -43,6 +43,7 @@ import org.mockito.stubbing.Answer;
import com.google.common.collect.Lists;
@Ignore("This test cannot currently work because it uses a local filesystem output path for the indexes and Solr requires hdfs output paths")
public class MorphlineReducerTest extends MRUnitBase {
@BeforeClass
@ -94,7 +95,6 @@ public class MorphlineReducerTest extends MRUnitBase {
}
@Test
@Ignore("This test cannot currently work because it uses a local filesystem output path for the indexes and Solr requires hdfs output paths")
public void testReducer() throws Exception {
MySolrReducer myReducer = new MySolrReducer();
try {