sorry last fix was wrong

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@940892 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2010-05-04 15:09:52 +00:00
parent a96f5e9549
commit 1fdaf68d0d
1 changed files with 10 additions and 1 deletions

View File

@ -145,7 +145,16 @@ The source distribution does not contain sources of the previous Lucene Java ver
</sequential>
</macrodef>
<target name="junit-backwards-sequential" if="runsequential,backwards.available">
<target name="check-backwards-cond">
<condition property="run-backwards-sequential">
<and>
<isset property="backwards.available"/>
<isset property="runsequential"/>
</and>
</condition>
</target>
<target name="junit-backwards-sequential" depends="check-backwards-cond" if="run-backwards-sequential">
<backwards-test-macro/>
</target>