User: starksm
Date: 01/10/20 16:52:52
Modified: jboss build.xml
Log:
Add a run-basic-testsuite to the main build.xml file that invokes
the tests-unit target in the testsuite module. This test should be run
prior to any commits to ensure a minimum compatibility level with the
existing code base.
Revision Changes Path
1.42 +17 -1 build/jboss/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/build/jboss/build.xml,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- build.xml 2001/10/20 04:24:23 1.41
+++ build.xml 2001/10/20 23:52:52 1.42
@@ -10,7 +10,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.41 2001/10/20 04:24:23 schaefera Exp $ -->
+<!-- $Id: build.xml,v 1.42 2001/10/20 23:52:52 starksm Exp $ -->
<project default="main" name="JBoss/Build">
@@ -1501,6 +1501,22 @@
<!-- ================================================================== -->
<target name="testsuite" depends="run-testsuite"/>
+
+ <!-- Invoke the 'tests-unit' on the 'testsuite' module. This must
+ be run prior to commiting any changes to ensure that your changes
+ don't cause grief to other developers.
+ -->
+ <target name="run-basic-testsuite" depends="init"
+ description="Execute the testsuite.">
+ <execmodules target="tests-unit" modules="testsuite"
+ root="${project.root}/${module}"
+ skipmissing="${executemodules.skipmissing}">
+ <before target="${target}-${module}-prepare"/>
+ <header message="${executemodules.header}"/>
+ <footer message="${executemodules.footer}"/>
+ <after target="${target}-${module}"/>
+ </execmodules>
+ </target>
<!-- Invoke the 'tests' on the 'testsuite' module -->
<target name="run-testsuite" depends="init"
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development