Browse Source

Merge branch '1.9.x'

master
Stefan Bodewig 7 years ago
parent
commit
02e72b8ca9
3 changed files with 7 additions and 2 deletions
  1. +1
    -0
      build.xml
  2. +5
    -1
      launch-build.xml
  3. +1
    -1
      src/tests/antunit/taskdefs/get-test.xml

+ 1
- 0
build.xml View File

@@ -1962,6 +1962,7 @@ ${antunit.reports}
<propertyset>
<propertyref name="antunit.tmpdir"/>
<propertyref name="ant.home"/>
<propertyref name="jenkins"/>
</propertyset>
</au:antunit>
</target>


+ 5
- 1
launch-build.xml View File

@@ -21,7 +21,11 @@
Build file be able to launch the boostrap build of Ant on every supported platform
</description>
<property name="args" value="allclean test -Dignore.tests.failed=true -Doptional.jars.whenmanifestonly=skip" />
<property name="default-args" value="allclean test -Dignore.tests.failed=true -Doptional.jars.whenmanifestonly=skip" />
<condition property="args" value="${default-args} -Djenkins=t">
<isset property="jenkins"/>
</condition>
<property name="args" value="${default-args}" />

<condition property="launch.cmd" value="${basedir}/build.sh">
<os family="unix" />


+ 1
- 1
src/tests/antunit/taskdefs/get-test.xml View File

@@ -94,7 +94,7 @@
</target>
<target name="testInfiniteRedirect">
<target name="testInfiniteRedirect" unless="jenkins">
<au:expectfailure expectedmessage="More than 25 times redirected, giving up">
<get src="${location}/infinite.txt" dest="${output}/infinite.tmp"/>
</au:expectfailure>


Loading…
Cancel
Save