1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<?xml version="1.0" encoding="UTF-8" ?>
<project name="HasFreeSpaceConditionTest" default="testPartitionNotSet">
<if>
<os family="windows"/>
<then>
<property name="my.partition" value="C:"/>
</then>
<else>
<property name="my.partition" value="/"/>
</else>
</if>
<target name="testPartitionNotSet">
<if>
<hasfreespace/>
</if>
</target>
<target name="testNeededNotSet">
<if>
<hasfreespace partition="${my.partition}"/>
</if>
</target>
<target name="testInvalidPartition">
<if>
<hasfreespace partition="foo" needed="1M"/>
</if>
</target>
<target name="testEnoughSpace">
<if>
<hasfreespace partition="${my.partition}" needed="1M"/>
<then>
<echo>HasFreeSpaceConditionTest: Enough space in disk.</echo>
</then>
</if>
</target>
<target name="testNotEnoughSpace">
<if>
<not>
<hasfreespace partition="${my.partition}" needed="900TiB"/>
</not>
<then>
<echo>HasFreeSpaceConditionTest: Not enough space in disk.</echo>
</then>
</if>
</target>
</project>
|