SOLR-4916: Do not run hdfs tests on FreeBSD because they do not play nice with blackhole

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1497458 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2013-06-27 17:17:49 +00:00
parent 874e966970
commit 181296ff41
2 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,8 @@ public final class Constants {
public static final boolean SUN_OS = OS_NAME.startsWith("SunOS");
/** True iff running on Mac OS X */
public static final boolean MAC_OS_X = OS_NAME.startsWith("Mac OS X");
/** True iff running on FreeBSD */
public static final boolean FREE_BSD = OS_NAME.startsWith("FreeBSD");
public static final String OS_ARCH = System.getProperty("os.arch");
public static final String OS_VERSION = System.getProperty("os.version");

View File

@ -35,6 +35,8 @@ public class HdfsTestUtil {
public static MiniDFSCluster setupClass(String dataDir) throws Exception {
LuceneTestCase.assumeFalse("HDFS tests on Windows require Cygwin", Constants.WINDOWS);
LuceneTestCase.assumeFalse("HDFS do not work well with FreeBSD blackhole setup", Constants.FREE_BSD);
// LuceneTestCase.assumeFalse("HDFS tests on Windows require Cygwin", Constants.F);
File dir = new File(dataDir);
new File(dataDir).mkdirs();