jamejose 2005/05/20 06:05:53
Modified: c/build executeTest.xml
Log:
Edited executeTest.xml to include SSL Library entry in axiscpp.conf file for
SSL Tests
Revision Changes Path
1.24 +12 -3 ws-axis/c/build/executeTest.xml
Index: executeTest.xml
===================================================================
RCS file: /home/cvs/ws-axis/c/build/executeTest.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- executeTest.xml 19 Apr 2005 11:56:36 -0000 1.23
+++ executeTest.xml 20 May 2005 13:05:53 -0000 1.24
@@ -188,10 +188,19 @@
#XMLParser:${dir.libraries}/${libraryPrefix}${xmlParserLibraryName}${librarySuffix}
XMLParser:${dir.libraries}/${ClientParserLib}
Channel_HTTP:${dir.libraries}/${libraryPrefix}${HTTP.ChannelLibraryName}${librarySuffix}
-${commentSSLDirective}Channel_HTTP_SSL:${dir.libraries}/${libraryPrefix}${HTTP.SecureChannelLibraryName}${librarySuffix}
-
</echo>
+<if>
+ <istrue value="${test.ssl}" />
+<then>
+ <echo file="${axiscpp.conf}"
append="true">Channel_HTTP_SSL:${dir.libraries}/${libraryPrefix}${HTTP.SecureChannelLibraryName}${librarySuffix}
+ </echo>
+</then>
+<else>
+ <echo file="${axiscpp.conf}" append="true">
+${commentSSLDirective}Channel_HTTP_SSL:${dir.libraries}/${libraryPrefix}${HTTP.SecureChannelLibraryName}${librarySuffix}
+ </echo>
+</else>
+</if>
</target>
</project>
-