[jboss-cvs] JBossCache ...

Manik Surtani msurtani at jboss.com
Thu Feb 1 14:03:46 EST 2007


  User: msurtani
  Date: 07/02/01 14:03:46

  Modified:    JBossCache  build.xml
  Log:
  added ant libs to jboss retro lib dir so retroweaver runs
  
  Revision  Changes    Path
  1.174     +19 -1     JBossCache/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/build.xml,v
  retrieving revision 1.173
  retrieving revision 1.174
  diff -u -b -r1.173 -r1.174
  --- build.xml	1 Feb 2007 18:09:56 -0000	1.173
  +++ build.xml	1 Feb 2007 19:03:46 -0000	1.174
  @@ -1,6 +1,6 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
  -<!-- $Id: build.xml,v 1.173 2007/02/01 18:09:56 msurtani Exp $ -->
  +<!-- $Id: build.xml,v 1.174 2007/02/01 19:03:46 msurtani Exp $ -->
   
   <project default="compile" name="JBossCache">
   
  @@ -122,6 +122,10 @@
         <fileset dir="${retro.lib.dir}">
            <include name="*.jar"/>
         </fileset>
  +      <!-- ant libs are needed as well -->
  +      <fileset dir="${ant.dir}/lib">
  +         <include name="*.jar"/>
  +      </fileset>
      </path>
   
      <path id="output.classpath">
  @@ -1021,11 +1025,25 @@
      <target name="all-unittests-retro-cc" depends="unittests-init"
              description="Run retroweaved codebase and unit tests, excluding AOP-based ones (functional, perf, stress) for CruiseControl, (excludes 'known failures').  Meant to be run under JDK 1.4.0.">
   
  +      <antcall target="all-unittests-retro" inheritrefs="false">
  +         <reference refid="known.failures" torefid="junit.excludes"/>
  +         <param name="jgroups.stack" value="udp"/>
  +      </antcall>
  +
  +      <antcall target="all-unittests-retro" inheritrefs="false">
  +         <reference refid="known.failures" torefid="junit.excludes"/>
  +         <param name="jgroups.stack" value="tcp"/>
  +      </antcall>
  +      
  +   </target>
  +
  +   <target name="all-unittests-retro" depends="jbossretro">
         <junit printsummary="yes" timeout="${junit.timeout}" fork="yes" maxmemory="512m">
            <classpath refid="library.classpath"/>
            <classpath refid="retro.output.classpath"/>
            <jvmarg value="-Dbind.address=${bind.address}"/>
            <jvmarg value="-Djava.net.preferIPv4Stack=true"/>
  +         <jvmarg value="-Djgroups.stack=${jgroups.stack}"/>
            <!--<jvmarg value="-Dtest.jar.dir=${output.dir}"/>-->
            <formatter classname="org.jboss.cache.util.XMLUnitTestFormatter" usefile="true"/>
            <batchtest todir="${build.reports}">
  
  
  



More information about the jboss-cvs-commits mailing list