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 na...@apache.org on 2006/03/09 04:32:09 UTC

svn commit: r384413 - /webservices/axis/trunk/c/build/buildTest.xml

Author: nadiramra
Date: Wed Mar  8 19:32:07 2006
New Revision: 384413

URL: http://svn.apache.org/viewcvs?rev=384413&view=rev
Log:
C support fixes/enhancements.

Modified:
    webservices/axis/trunk/c/build/buildTest.xml

Modified: webservices/axis/trunk/c/build/buildTest.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/build/buildTest.xml?rev=384413&r1=384412&r2=384413&view=diff
==============================================================================
--- webservices/axis/trunk/c/build/buildTest.xml (original)
+++ webservices/axis/trunk/c/build/buildTest.xml Wed Mar  8 19:32:07 2006
@@ -1,4 +1,3 @@
-
 <project name="buildTest" default="compileClient" basedir="..">
 	<import file="buildLibrary.xml"/>
 	
@@ -19,6 +18,9 @@
 		<condition property="clientLibraryName.lang" value="${clientLibraryName}">
 			<equals arg1="${test.clientLang}" arg2="cpp"/>
 		</condition>
+		<condition property="CommonClientTestCode.header" value="CommonClientTestCode.hpp">
+			<equals arg1="${test.clientLang}" arg2="cpp"/>
+		</condition>
 
 		<condition property="generated.lang" value="c">
 			<equals arg1="${test.clientLang}" arg2="c"/>
@@ -29,6 +31,9 @@
 		<condition property="clientLibraryName.lang" value="${cClientLibraryName}">
 			<equals arg1="${test.clientLang}" arg2="c"/>
 		</condition>
+		<condition property="CommonClientTestCode.header" value="CommonClientTestCode.h">
+			<equals arg1="${test.clientLang}" arg2="c"/>
+		</condition>
 	</target>
 
 	<!--
@@ -63,11 +68,11 @@
 
 	<target name="copyClientCode" unless="test.dynamicCode">
 		<copy file="${client.code}" todir="${test.directory}"/>
-		<copy file="${dir.autotests}/client/${test.clientLang}/CommonClientTestCode.hpp"  todir="${test.directory}"/>
+		<copy file="${dir.autotests}/client/${test.clientLang}/${CommonClientTestCode.header}"  todir="${test.directory}"/>
 	</target>
 
 	<target name="copyDynamicClient" if="test.dynamicCode">
-		<copy file="${dir.autotests}/client/${test.clientLang}/CommonClientTestCode.hpp"  todir="${test.directory}"/>
+		<copy file="${dir.autotests}/client/${test.clientLang}/${CommonClientTestCode.header}"  todir="${test.directory}"/>
 		<copy todir="${test.directory}">
 			<fileset dir="${dir.autotests}/dynamic/${test.dynamicCodeDirectory}">
 				<include name="*.${test.clientLang}"/>
@@ -161,5 +166,4 @@
 		</cc>
 	</target>
 
-</project>
-
+</project>
\ No newline at end of file