SOLR-5022: Reenable Hdfs tests on Java 8+, because they have no permgen. Windows is still disabled, because Hadoop needs Cygwin.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1637754 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2014-11-09 22:22:36 +00:00
parent 8251f8dbf8
commit 376a4007f6
1 changed files with 9 additions and 3 deletions

View File

@ -141,10 +141,16 @@
</sequential>
</macrodef>
<!-- we don't want to run HDFS tests on Windows, because they require Cygwin.
If you have Cygwin, you can override this property on command line: -->
<!--
- We don't test HDFS on Java 7 because it causes permgen errors. Java 8 no longer has permgen.
- We don't want to run HDFS tests on Windows, because they require Cygwin.
If you have Cygwin or manually raised permgen, you can override this property on command line:
-->
<condition property="tests.disableHdfs" value="true">
<os family="windows"/>
<or>
<equals arg1="${build.java.runtime}" arg2="1.7"/>
<os family="windows"/>
</or>
</condition>
<target name="validate" depends="compile-tools">