User: patriot1burke Date: 02/01/12 12:21:52 Modified: . build.xml Log: Added deadlock detection test to test new deadlock detection algorithm in QueuedEJBPessimisticLock Revision Changes Path 1.58 +35 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- build.xml 2002/01/09 23:49:33 1.57 +++ build.xml 2002/01/12 20:21:52 1.58 @@ -12,7 +12,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.57 2002/01/09 23:49:33 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.58 2002/01/12 20:21:52 patriot1burke Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -421,6 +421,7 @@ _jars-load, _jars-jrmp, _jars-threading, + _jars-deadlock, _jars-testbean, _jars-testbeancluster, _jars-perf, @@ -1078,6 +1079,39 @@ <include name="**/*.xml"/> </fileset> </jar> + </target> + + <!-- deadlock test --> + <target name="_jars-deadlock"> + <mkdir dir="${build.lib}"/> + + <!-- build deadlocktest.jar --> + <jar jarfile="${build.lib}/deadlocktest.jar" + manifest="${build.etc}/manifest.mf"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.client.classes"/> + <include name="org/jboss/test/deadlock/interfaces/**"/> + <include name="org/jboss/test/deadlock/test/**"/> + <include name="org/somepackage/**"/> + </fileset> + <fileset dir="${build.resources}/deadlock"> + <include name="*.*"/> + </fileset> + </jar> + + <!-- build deadlock.jar --> + <jar jarfile="${build.lib}/deadlock.jar"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.application.classes"/> + <include name="org/jboss/test/deadlock/interfaces/**"/> + <include name="org/jboss/test/deadlock/bean/**"/> + <include name="org/somepackage/**"/> + </fileset> + <fileset dir="${build.resources}/deadlock"> + <include name="**/*.xml"/> + </fileset> + </jar> + </target> <!-- testbean test -->
_______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development