From: thomas d. <tdi...@us...> - 2003-11-15 10:38:49
|
User: tdiesler Date: 03/11/15 02:38:46 Modified: . build.xml Log: exclude webservice tests from tests-standard-unit and call as seperate target Revision Changes Path 1.308 +8 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.307 retrieving revision 1.308 diff -u -r1.307 -r1.308 --- build.xml 12 Nov 2003 23:00:42 -0000 1.307 +++ build.xml 15 Nov 2003 10:38:45 -0000 1.308 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.307 2003/11/12 23:00:42 tdiesler Exp $ --> +<!-- $Id: build.xml,v 1.308 2003/11/15 10:38:45 tdiesler Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4842,8 +4842,11 @@ <!-- Exclude XAUnitTestCase until it can be updated --> <exclude name="**/test/xa/test/XAUnitTestCase.class"/> - <!-- Exclude JSR77, it is run in its own target with a security manager --> - <exclude name="**/test/management/test/**UnitTestCase.class"/> + <!-- Exclude JSR77, it is run in its own target with a security manager --> + <exclude name="**/test/management/test/**UnitTestCase.class"/> + + <!-- Exclude webservices, they run in their own target --> + <exclude name="**/test/webservice/*"/> </fileset> </batchtest> </junit> @@ -5317,7 +5320,8 @@ <path refid="tests.classpath"/> </classpath> - <formatter type="xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> + <formatter type="plain" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" |