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 di...@apache.org on 2006/03/27 18:17:25 UTC

svn commit: r389188 - /webservices/axis/trunk/c/build/executeTest.xml

Author: dicka
Date: Mon Mar 27 08:17:24 2006
New Revision: 389188

URL: http://svn.apache.org/viewcvs?rev=389188&view=rev
Log:
Inverted logic being used when determining if trace is required.

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

Modified: webservices/axis/trunk/c/build/executeTest.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/build/executeTest.xml?rev=389188&r1=389187&r2=389188&view=diff
==============================================================================
--- webservices/axis/trunk/c/build/executeTest.xml (original)
+++ webservices/axis/trunk/c/build/executeTest.xml Mon Mar 27 08:17:24 2006
@@ -318,9 +318,7 @@
 
 		<if>
 		    <and>
-				<not>
-					<isset property="test.notrace"/>
-				</not>
+				<isset property="test.notrace"/>
 				<not>
 					<istrue value="${test.ssl}"/>
 				</not>
@@ -348,72 +346,73 @@
 				<not>
 					<istrue value="${test.ssl}"/>
 				</not>
-				<isset property="test.notrace"/>
+                <not>      
+				    <isset property="test.notrace"/>
+                </not>
 		    </and>
 			<then>
 <!-- Client Log, No SSL Library -->
 				<echo message="Client log, but no SSL library."/>
 				<exec executable="${dir.release}/bin/${axisConfigurationExecutableName}${executableSuffix}">
-					<arg line="Client
-							   -acd ${confFileDirectory}
-							   -th  ${dir.libraries}/${libraryPrefix}${transportLibraryName}${librarySuffix}
-							   -c   ${dir.libraries}/${libraryPrefix}${HTTP.ChannelLibraryName}${librarySuffix}
-							   -x   ${dir.libraries}/${ClientParserLib}
-							   -cl  ${test.directory}/ClientLog.taw
-							   -so  &quot;${env.SSL_KEYS_HOME}/myKeyRing.kdb,axis4all,AXIS,NONE,05,NONE,false&quot;
-							   -b   false
-							   -pi  quiet
-							   -qmf off"
-					/>
+					<arg line="Client"/>
+                    <arg line="-acd ${confFileDirectory}"/>
+                    <arg line="-th  ${dir.libraries}/${libraryPrefix}${transportLibraryName}${librarySuffix}"/>
+                    <arg line="-c   ${dir.libraries}/${libraryPrefix}${HTTP.ChannelLibraryName}${librarySuffix}"/>
+                    <arg line="-x   ${dir.libraries}/${ClientParserLib}"/>
+                    <arg line="-cl  ${test.directory}/ClientLog.taw"/>
+                    <arg line="-so  &quot;${env.SSL_KEYS_HOME}/myKeyRing.kdb,axis4all,AXIS,NONE,05,NONE,false&quot;"/>
+                    <arg line="-b   false"/>
+                    <arg line="-pi  quiet"/>
+                    <arg line="-qmf off"/>
 				</exec>
 			</then>
 		</if>
 
 		<if>
 		    <and>
-				<not>
-					<isset property="test.notrace"/>
-				</not>
+				<isset property="test.notrace"/>
 				<istrue value="${test.ssl}"/>
 		    </and>
 			<then>
 <!-- No Client Log, SSL Library -->
 				<echo message="No Client log but SSL library."/>
 				<exec executable="${dir.release}/bin/${axisConfigurationExecutableName}${executableSuffix}">
-					<arg line="Client -acd  ${confFileDirectory}
-								-th  ${dir.libraries}/${libraryPrefix}${transportLibraryName}${librarySuffix}
-								-c   ${dir.libraries}/${libraryPrefix}${HTTP.ChannelLibraryName}${librarySuffix}
-								-cs  ${dir.libraries}/${libraryPrefix}${HTTP.SecureChannelLibraryName}${librarySuffix}
-								-x   ${dir.libraries}/${ClientParserLib}
-							    -so  &quot;${env.SSL_KEYS_HOME}/myKeyRing.kdb,axis4all,AXIS,NONE,05,NONE,false&quot;
-								-b   false
-								-pi  quiet
-								-qmf off"
-					/>
+					<arg line="Client"/>
+                    <arg line="-acd  ${confFileDirectory}"/>
+                    <arg line="-th  ${dir.libraries}/${libraryPrefix}${transportLibraryName}${librarySuffix}"/>
+                    <arg line="-c   ${dir.libraries}/${libraryPrefix}${HTTP.ChannelLibraryName}${librarySuffix}"/>
+                    <arg line="-cs  ${dir.libraries}/${libraryPrefix}${HTTP.SecureChannelLibraryName}${librarySuffix}"/>
+                    <arg line="-x   ${dir.libraries}/${ClientParserLib}"/>
+                    <arg line="-so  &quot;${env.SSL_KEYS_HOME}/myKeyRing.kdb,axis4all,AXIS,NONE,05,NONE,false&quot;"/>
+                    <arg line="-b   false"/>
+                    <arg line="-pi  quiet"/>
+                    <arg line="-qmf off"/>
 				</exec>
 			</then>
 		</if>
 
 		<if>
 		    <and>
-				<isset property="test.notrace"/>
+                <not>      
+				    <isset property="test.notrace"/>
+                </not>
 		        <istrue value="${test.ssl}"/>
 		    </and>
 			<then>
 <!-- Client Log, SSL Library -->
 				<echo message="Client log and SSL library."/>
 				<exec executable="${dir.release}/bin/${axisConfigurationExecutableName}${executableSuffix}">
-					<arg line="Client -acd  ${confFileDirectory}
-								-th  ${dir.libraries}/${libraryPrefix}${transportLibraryName}${librarySuffix}
-								-c   ${dir.libraries}/${libraryPrefix}${HTTP.ChannelLibraryName}${librarySuffix}
-								-cs  ${dir.libraries}/${libraryPrefix}${HTTP.SecureChannelLibraryName}${librarySuffix}
-								-x   ${dir.libraries}/${ClientParserLib}
-								-cl  ${test.directory}/ClientLog.taw
-							    -so  &quot;${env.SSL_KEYS_HOME}/myKeyRing.kdb,axis4all,AXIS,NONE,05,NONE,false&quot;
-								-b   false
-								-pi  quiet
-								-qmf off"
-					/>
+					<arg line="Client"/>
+                    <arg line="-acd  ${confFileDirectory}"/>
+                    <arg line="-th  ${dir.libraries}/${libraryPrefix}${transportLibraryName}${librarySuffix}"/>
+                    <arg line="-c   ${dir.libraries}/${libraryPrefix}${HTTP.ChannelLibraryName}${librarySuffix}"/>
+                    <arg line="-cs  ${dir.libraries}/${libraryPrefix}${HTTP.SecureChannelLibraryName}${librarySuffix}"/>
+                    <arg line="-x   ${dir.libraries}/${ClientParserLib}"/>
+                    <arg line="-cl  ${test.directory}/ClientLog.taw"/>
+                    <arg line="-so  &quot;${env.SSL_KEYS_HOME}/myKeyRing.kdb,axis4all,AXIS,NONE,05,NONE,false&quot;"/>
+                    <arg line="-b   false"/>
+                    <arg line="-pi  quiet"/>
+                    <arg line="-qmf off"/>
 				</exec>
 			</then>
 		</if>