Looking at SOLR-4548 I wanted to run the test in question using tests.iters to see if I could break it. Problem is that every time I run
ant -Dtestcase=TestSolrProperties test the test barfs because it cannot create the core. This does NOT occur when running the entire test suite (e.g. 'ant test'). It succeeds on 4.1, but not 4x or trunk. The error is: oasc.CoreContainer.recordAndThrow SEVERE Unable to create core: collection1 org.apache.solr.common.SolrException: access denied ("java.io.FilePermission" "/Users/Erick/apache/4x/solr/solrj/src/test-files/solrj/solr/shared/./data/index" "write") This is a really bogus place to be creating an index, I'm glad it fails... Of course it succeeds when running in IntelliJ. Before I dive into this, does it ring any bells with anyone? Or am I doing something completely silly again? Thanks, Erick