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/08/15 15:19:38 UTC

svn commit: r1373458 - /incubator/easyant/plugins/trunk/test-testng/src/main/resources/test-testng.ant

Author: jlboudart
Date: Wed Aug 15 15:19:37 2012
New Revision: 1373458

URL: http://svn.apache.org/viewvc?rev=1373458&view=rev
Log:
Fixes wrong extensionpoint for integration test

Modified:
    incubator/easyant/plugins/trunk/test-testng/src/main/resources/test-testng.ant

Modified: incubator/easyant/plugins/trunk/test-testng/src/main/resources/test-testng.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/test-testng/src/main/resources/test-testng.ant?rev=1373458&r1=1373457&r2=1373458&view=diff
==============================================================================
--- incubator/easyant/plugins/trunk/test-testng/src/main/resources/test-testng.ant (original)
+++ incubator/easyant/plugins/trunk/test-testng/src/main/resources/test-testng.ant Wed Aug 15 15:19:37 2012
@@ -57,12 +57,12 @@
         <testng-test prefix="test.integration"/>
     </target>
 
-    <target name="test-testng:run" if="test.mode.run" unless="skip.test" depends="-test-testng:test" description="run testng tests">
+    <target name="test-testng:run" if="test.mode.run" unless="skip.test" depends="-test-testng:test" description="run testng tests" extensionOf="abstract-test:test-run">
         <check-test-result propertytocheck="test.failed"
               message="At least one test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report" />
     </target>
 
-    <target name="test-testng:run-integration" if="test.mode.run" unless="skip.test.integration" depends="-test-testng:integration-test" description="run testng integration tests">
+    <target name="test-testng:run-integration" if="test.mode.run" unless="skip.test.integration" depends="-test-testng:integration-test" description="run testng integration tests" extensionOf="abstract-test:integration-test-run">
         <check-test-result propertytocheck="test.integration.failed"
               message="At least one integration test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report" />
     </target>