You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2012/10/17 06:28:16 UTC

svn commit: r1399108 - /incubator/easyant/plugins/trunk/antunit/src/main/resources/antunit.ant

Author: jlboudart
Date: Wed Oct 17 06:28:16 2012
New Revision: 1399108

URL: http://svn.apache.org/viewvc?rev=1399108&view=rev
Log:
Update default source directories with basedir in antunit

Modified:
    incubator/easyant/plugins/trunk/antunit/src/main/resources/antunit.ant

Modified: incubator/easyant/plugins/trunk/antunit/src/main/resources/antunit.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/antunit/src/main/resources/antunit.ant?rev=1399108&r1=1399107&r2=1399108&view=diff
==============================================================================
--- incubator/easyant/plugins/trunk/antunit/src/main/resources/antunit.ant (original)
+++ incubator/easyant/plugins/trunk/antunit/src/main/resources/antunit.ant Wed Oct 17 06:28:16 2012
@@ -26,7 +26,7 @@
         <ea:parameter property="target.antunit.xml" default="${target.test.xml}" description="destination directory for xml test report" />
         <ea:parameter property="target.antunit.html" default="${target.test.html}" description="destination directory for html test report" />
 
-        <ea:parameter property="src.test.antunit" default="src/test/antunit" description="directory where antunit test scripts are stored" />
+        <ea:parameter property="src.test.antunit" default="${basedir}/src/test/antunit" description="directory where antunit test scripts are stored" />
         <ea:parameter property="antunit.testcase"
             description="specify a list of testcase that you want to run, if no one is specified includes pattern will be used" />
         <ea:parameter property="test.antunit.log.level" default="error"
@@ -35,7 +35,7 @@
         <ea:parameter property="test.antunit.excludes.pattern" default=""
             description="Pattern describing files excluded in antunit test process" />
 
-        <ea:parameter property="src.test.integration.antunit" default="src/integration-test/antunit"
+        <ea:parameter property="src.test.integration.antunit" default="${basedir}/src/integration-test/antunit"
             description="directory where antunit integration tests are stored.  Integration tests are run after packaging, in the integration-test phase." />
         <ea:parameter property="test.integration.antunit.includes.pattern" description="Pattern describing files included in antunit integration test process" />
         <ea:parameter property="test.integration.antunit.excludes.pattern" default=""
@@ -112,4 +112,4 @@
         <fail if="antunit.test.integration.failed"
             message="At least one integration test has failed. See logs in ${target.test.xml} or report in ${target.test.html}" />
     </target>
-</project>
\ No newline at end of file
+</project>