You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by si...@apache.org on 2010/10/22 12:19:37 UTC

svn commit: r1026275 - /lucene/dev/branches/docvalues/solr/src/test/org/apache/solr/SolrInfoMBeanTest.java

Author: simonw
Date: Fri Oct 22 10:19:37 2010
New Revision: 1026275

URL: http://svn.apache.org/viewvc?rev=1026275&view=rev
Log:
Taking SolrInfoMBeanTest out of the loop see SOLR-2160

Modified:
    lucene/dev/branches/docvalues/solr/src/test/org/apache/solr/SolrInfoMBeanTest.java

Modified: lucene/dev/branches/docvalues/solr/src/test/org/apache/solr/SolrInfoMBeanTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/docvalues/solr/src/test/org/apache/solr/SolrInfoMBeanTest.java?rev=1026275&r1=1026274&r2=1026275&view=diff
==============================================================================
--- lucene/dev/branches/docvalues/solr/src/test/org/apache/solr/SolrInfoMBeanTest.java (original)
+++ lucene/dev/branches/docvalues/solr/src/test/org/apache/solr/SolrInfoMBeanTest.java Fri Oct 22 10:19:37 2010
@@ -41,7 +41,9 @@ public class SolrInfoMBeanTest extends L
    * Gets a list of everything we can find in the classpath and makes sure it has
    * a name, description, etc...
    */
+  @Ignore // TODO: reenable once SOLR-2160 is fixed
   public void testCallMBeanInfo() throws Exception {
+//    Object[] init = org.apache.solr.search.QParserPlugin.standardPlugins;
     List<Class> classes = new ArrayList<Class>();
     classes.addAll(getClassesForPackage(StandardRequestHandler.class.getPackage().getName()));
     classes.addAll(getClassesForPackage(SearchHandler.class.getPackage().getName()));
@@ -82,7 +84,7 @@ public class SolrInfoMBeanTest extends L
       }
     }
     assertTrue( "there are at least 10 SolrInfoMBean that should be found in the classpath, found " + checked, checked > 10 );
-  }
+ }
   
   static final String FOLDER = File.separator + "build" + File.separator + "solr" + File.separator + "org" + File.separator + "apache" + File.separator + "solr" + File.separator;