[jboss-cvs] JBossRemoting ...

Tom Elrod tom.elrod at jboss.com
Tue Jul 25 16:45:47 EDT 2006


  User: telrod  
  Date: 06/07/25 16:45:47

  Modified:    JBossRemoting  build.xml
  Log:
  JBREM-302 - changed to remote dynamic classloading (of marshallers) is only run on windows platform.
  
  Revision  Changes    Path
  1.68      +11 -2     JBossRemoting/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/build.xml,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -u -b -r1.67 -r1.68
  --- build.xml	25 Jul 2006 19:52:22 -0000	1.67
  +++ build.xml	25 Jul 2006 20:45:47 -0000	1.68
  @@ -9,7 +9,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.67 2006/07/25 19:52:22 telrod Exp $ -->
  +<!-- $Id: build.xml,v 1.68 2006/07/25 20:45:47 telrod Exp $ -->
   
   <project default="most" name="JBossRemoting">
   
  @@ -17,6 +17,15 @@
      <!-- Configuration                                                      -->
      <!-- ================================================================== -->
   
  +   <condition property = "os.unix">
  +     <os family = "unix" />
  +   </condition>
  +
  +   <condition property = "os.windows">
  +     <os family = "windows" />
  +   </condition>
  +
  +
      <target name="configure" depends="get-jvm" unless="configure.disable">
   
         <!-- This is for the jrunit benchmark results -->
  @@ -735,7 +744,7 @@
      <!-- End of socket serialization smoke tests -->
   
      <!-- Tests dynamic, remote loading of marshaller/unmarshaller -->
  -   <target name="tests.marshall" depends="tests.jars">
  +   <target name="tests.marshall" depends="tests.jars" if="os.windows">
         <mkdir dir="${output.tests.results}"/>
         <junit printsummary="true" fork="yes" includeantruntime="true">
            <classpath>
  
  
  



More information about the jboss-cvs-commits mailing list