Author: bodewig Date: Sat Aug 26 12:11:40 2006 New Revision: 437213 URL: http://svn.apache.org/viewvc?rev=437213&view=rev Log: merge
Added: ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/tests/ ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/tests/junit/ - copied from r437212, ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/testcases/ Removed: ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/testcases/ Modified: ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/build.xml Modified: ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/build.xml URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/build.xml?rev=437213&r1=437212&r2=437213&view=diff ============================================================================== --- ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/build.xml (original) +++ ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/build.xml Sat Aug 26 12:11:40 2006 @@ -38,11 +38,11 @@ <fail unless="good-ant-version?">This branch must be built using Ant 1.6.x with x >= 2</fail> </target> - <target name="test" depends="compile-tests"> + <target name="junit-test" depends="compile-tests"> <junit printsummary="false" haltonfailure="false" - failureproperty="tests.failed" + failureproperty="junit.tests.failed" filtertrace="false" fork="true" forkmode="once" @@ -55,12 +55,11 @@ </classpath> <batchtest> - <fileset dir="src/testcases"/> + <fileset dir="${src.junit}"/> </batchtest> <formatter type="plain" usefile="false"/> </junit> - <fail if="tests.failed">At least one test has failed.</fail> </target> -</project> \ No newline at end of file +</project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]