You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by se...@apache.org on 2002/09/26 21:57:40 UTC

cvs commit: xml-axis/java build.xml buildTest.xml

seibert     2002/09/26 12:57:40

  Modified:    java     build.xml buildTest.xml
  Log:
  Adding back in the inadvertantly remoed "interop3" target
  
  Adding back in the function-tests-secure-only target
  
  Revision  Changes    Path
  1.200     +19 -0     xml-axis/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/build.xml,v
  retrieving revision 1.199
  retrieving revision 1.200
  diff -u -r1.199 -r1.200
  --- build.xml	26 Sep 2002 13:58:35 -0000	1.199
  +++ build.xml	26 Sep 2002 19:57:40 -0000	1.200
  @@ -253,6 +253,10 @@
       <ant inheritAll="${ant.inheritAll}" inheritRefs="${ant.inheritRefs}" dir="${axis.home}" antfile="buildTest.xml" target="functional-tests"/>
     </target>
   
  +  <target name="functional-tests-secure-only" depends="buildFunctional" description="secure functional tests">
  +    <ant inheritAll="${ant.inheritAll}" inheritRefs="${ant.inheritRefs}" dir="${axis.home}" antfile="buildTest.xml" target="functional-tests-secure-only"/>
  +  </target>
  +
     <!-- All tests -->
     <target name="all-tests" depends="junit, functional-tests">
     </target>
  @@ -399,6 +403,21 @@
         <fileset dir="${build.javadocs}"/>
       </copy>
       <copy file="../LICENSE" tofile="${dist.dir}/LICENSE"/>
  +  </target>
  +
  +  <!-- =================================================================== -->
  +  <!-- Interop 3                                                           -->
  +  <!-- =================================================================== -->
  +  <target name="interop3" depends="buildTest"
  +      description="run the round3 interop tests">
  +    <ant dir="test/wsdl/interop3/import1"/>
  +    <ant dir="test/wsdl/interop3/import2"/>
  +    <ant dir="test/wsdl/interop3/import3"/>
  +    <ant dir="test/wsdl/interop3/compound1"/>
  +    <ant dir="test/wsdl/interop3/compound2"/>
  +    <ant dir="test/wsdl/interop3/docLit"/>
  +    <ant dir="test/wsdl/interop3/docLitParam"/>
  +    <ant dir="test/wsdl/interop3/rpcEnc"/>
     </target>
   
     <!-- =================================================================== -->
  
  
  
  1.41      +14 -0     xml-axis/java/buildTest.xml
  
  Index: buildTest.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/buildTest.xml,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- buildTest.xml	19 Sep 2002 15:58:00 -0000	1.40
  +++ buildTest.xml	26 Sep 2002 19:57:40 -0000	1.41
  @@ -237,6 +237,20 @@
     </target>
   
     <!-- =================================================================== -->
  +  <!-- Run secure functional tests ONLY                                    -->
  +  <!-- =================================================================== -->
  +  <target name="functional-tests-secure-only" if="junit.present">
  +
  +    <runaxisfunctionaltests
  +      url="http://localhost:8088"
  +      startTarget1="start-functional-test-tcp-server"
  +      startTarget2="start-functional-test-http-server"
  +      testTarget="junit-functional-secure"
  +      stopTarget="stop-functional-test-http-server-secure" />
  +
  +  </target>
  +
  +<!-- =================================================================== -->
     <!-- Run simple tests                                                -->
     <!-- =================================================================== -->
     <target name="simple-tests" depends="setenv" if="junit.present" >