User: d_jencks
  Date: 01/09/17 20:43:52

  Modified:    .        build.xml
  Log:
  added log4j properties so you can see the logging
  
  Revision  Changes    Path
  1.27      +18 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- build.xml 2001/09/17 17:33:52     1.26
  +++ build.xml 2001/09/18 03:43:51     1.27
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.26 2001/09/17 17:33:52 d_jencks Exp $ -->
  +<!-- $Id: build.xml,v 1.27 2001/09/18 03:43:51 d_jencks Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -306,6 +306,7 @@
       <property name="build.resources" value="${module.output}/resources"/>
       <property name="build.stylesheets" value="${module.output}/stylesheets"/>
       <property name="build.reports" value="${module.output}/reports"/>
  +    <property name="build.testlog" value="${module.output}/log"/>
   
       <!-- Install/Release structure -->
       <property name="install.id" value="${module.name}-${module.version}"/>
  @@ -1462,6 +1463,7 @@
   
     <target name="tests-standard-unit" depends="jars">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1472,6 +1474,7 @@
   
         <jvmarg value="${junit.jvm.options}"/>
         <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
   
         <classpath>
           <pathelement location="${build.classes}"/>
  @@ -1500,6 +1503,7 @@
   
     <target name="tests-standard-stress" depends="jars">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1510,6 +1514,7 @@
   
         <jvmarg value="${junit.jvm.options}"/>
         <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
   
         <classpath>
           <pathelement location="${build.classes}"/>
  @@ -1544,6 +1549,7 @@
   
     <target name="tests-client-unit" depends="jars">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1554,6 +1560,7 @@
   
         <jvmarg value="${junit.jvm.options}"/>
         <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
   
         <jvmarg value="-Djava.security.manager"/>
         <sysproperty key="java.security.policy"
  @@ -1584,6 +1591,7 @@
   
     <target name="tests-client-stress" depends="jars">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1600,6 +1608,7 @@
                   value="${build.resources}/security/tst.policy"/>
         <sysproperty key="java.security.auth.login.config"
                      value="${build.resources}/security/auth.conf"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
          
         <classpath>
           <pathelement path="${build.lib}/jrmp-dl-client.jar"/>
  @@ -1630,6 +1639,7 @@
   
     <target name="tests-security-basic-unit" depends="jars">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1647,6 +1657,7 @@
                   value="${build.resources}/security/tst.policy"/>
         <sysproperty key="java.security.auth.login.config"
                      value="${build.resources}/security/auth.conf"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
          
         <classpath>
           <pathelement location="${build.classes}"/>
  @@ -1673,6 +1684,7 @@
   
     <target name="tests-security-basic-stress" depends="jars">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1689,6 +1701,7 @@
                   value="${build.resources}/security/tst.policy"/>
         <sysproperty key="java.security.auth.login.config"
                      value="${build.resources}/security/auth.conf"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
          
         <classpath>
           <pathelement location="${build.classes}"/>
  @@ -1722,6 +1735,7 @@
     <target name="test" depends="jars" if="test"
          description="Execute a single test.">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1732,6 +1746,7 @@
   
         <jvmarg value="${junit.jvm.options}"/>
         <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
   
         <classpath>
           <pathelement location="${build.classes}"/>
  @@ -1762,6 +1777,7 @@
     <target name="one-test" depends="jars" if="test"
          description="Execute a single test.">
       <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
           printsummary="${junit.printsummary}" 
           haltonerror="${junit.haltonerror}" 
  @@ -1772,6 +1788,7 @@
   
         <jvmarg value="${junit.jvm.options}"/>
         <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="log4j.properties" 
file="${build.resources}/log4j.properties"/>
   
         <classpath>
           <pathelement location="${build.classes}"/>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to