[jboss-cvs] jboss-serialization ...

Clebert Suconic csuconic at jboss.com
Tue Sep 19 15:51:33 EDT 2006


  User: csuconic
  Date: 06/09/19 15:51:33

  Modified:    jboss-serialization  build.xml
  Log:
  Fixing temporary directory to be a directory under build (avoid conflicts with cruisecontrol)
  
  Revision  Changes    Path
  1.28      +7 -0      jboss-serialization/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-serialization/build.xml,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -b -r1.27 -r1.28
  --- build.xml	19 Sep 2006 18:20:02 -0000	1.27
  +++ build.xml	19 Sep 2006 19:51:33 -0000	1.28
  @@ -12,6 +12,7 @@
   	<property name="tests-src-jdk15" value="./tests-jdk15" />
   
   	<property name="build" value="./build" />
  +	<property name="build.temp" value="./build/tmp" />
   	<property name="build.classesdir" value="${build}/classes" />
   	<property name="build.testsdir" value="${build}/testclasses" />
   	<property name="tests.dir" value="${build}/test-results" />
  @@ -36,6 +37,7 @@
   
   	<target name="init">
   		<mkdir dir="${build.classesdir}" />
  +		<mkdir dir="${build.temp}" />
   		<mkdir dir="${build.testsdir}" />
   		<mkdir dir="${tests.dir}"/>
   		<mkdir dir="${assemble.jar}"/>
  @@ -111,6 +113,7 @@
       	
           <junit printsummary="true" >
           	<sysproperty key="classes.location" value="file://${classes-location-variable}/"/>
  +        	<sysproperty key="java.io.tmpdir" value="${build.temp}"/>
               <classpath refid="build.classpath">
               </classpath>
               <batchtest todir="${tests.dir}" fork="yes">
  @@ -125,6 +128,7 @@
   
       	<!-- Regression tests which we need two distinct executions -->
           <junit printsummary="true" >
  +        	<sysproperty key="java.io.tmpdir" value="${build.temp}"/>
           	<sysproperty key="classes.location" value="file://${classes-location-variable}/"/>
               <classpath refid="build.classpath">
               </classpath>
  @@ -134,6 +138,7 @@
           </junit>
       	
           <junit printsummary="true" >
  +        	<sysproperty key="java.io.tmpdir" value="${build.temp}"/>
           	<sysproperty key="classes.location" value="file://${classes-location-variable}/"/>
               <classpath refid="build.classpath">
               </classpath>
  @@ -171,6 +176,7 @@
           <junit printsummary="true">
               <classpath refid="build.classpath">
               </classpath>
  +        	<sysproperty key="java.io.tmpdir" value="${build.temp}"/>
               <!-- <jvmarg value="-XrunjbossInspector:c:/temp/tst,wakeupOnStartup=true"/> -->
               <jvmarg value="-Xms256m"/>
               <jvmarg value="-Xmx256m"/>
  @@ -199,6 +205,7 @@
           <junit printsummary="true">
               <classpath refid="build.classpath">
               </classpath>
  +        	<sysproperty key="java.io.tmpdir" value="${build.temp}"/>
               <!-- <jvmarg value="-Xdebug"/>
                    <jvmarg value="-Xnoagent"/>
                    <jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8787"/> -->
  
  
  



More information about the jboss-cvs-commits mailing list