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 da...@apache.org on 2006/02/01 04:08:54 UTC

svn commit: r373971 - in /webservices/axis2/trunk/c/test: core/addr/ core/clientapi/ core/context/ core/deployment/ core/description/ core/engine/ unit/ unit/core/context/ unit/core/deployment/ unit/core/description/ unit/core/engine/ unit/core/phasere...

Author: damitha
Date: Tue Jan 31 19:08:26 2006
New Revision: 373971

URL: http://svn.apache.org/viewcvs?rev=373971&view=rev
Log:
There was linking error in almost every test. Fixed it


Modified:
    webservices/axis2/trunk/c/test/core/addr/Makefile.am
    webservices/axis2/trunk/c/test/core/clientapi/Makefile.am
    webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c
    webservices/axis2/trunk/c/test/core/context/Makefile.am
    webservices/axis2/trunk/c/test/core/deployment/Makefile.am
    webservices/axis2/trunk/c/test/core/description/Makefile.am
    webservices/axis2/trunk/c/test/core/engine/Makefile.am
    webservices/axis2/trunk/c/test/unit/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/context/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am
    webservices/axis2/trunk/c/test/unit/util/Makefile.am
    webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am
    webservices/axis2/trunk/c/test/xml/om/Makefile.am
    webservices/axis2/trunk/c/test/xml/soap/Makefile.am

Modified: webservices/axis2/trunk/c/test/core/addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/addr/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/addr/Makefile.am Tue Jan 31 19:08:26 2006
@@ -9,6 +9,7 @@
 	                -laxis2_description \
 	                -laxis2_context \
 	                -laxis2_util \
+                    -laxis2_unix \
 	                -laxis2_deployment \
 	                -laxis2_om \
 	                -laxis2_engine \

Modified: webservices/axis2/trunk/c/test/core/clientapi/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/clientapi/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/clientapi/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/clientapi/Makefile.am Tue Jan 31 19:08:26 2006
@@ -10,6 +10,7 @@
                     -laxis2_description \
 	                -laxis2_context \
 	                -laxis2_util \
+                    -laxis2_unix \
 	                -laxis2_core_util \
 	                -laxis2_deployment \
 	                -laxis2_om \

Modified: webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c (original)
+++ webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c Tue Jan 31 19:08:26 2006
@@ -25,10 +25,12 @@
 	struct axis2_call *call = NULL;
 	struct axis2_svc_grp *svc_grp = NULL;
     struct axis2_conf *conf = NULL;
+    axis2_char_t *axis2c_home;
 	
 	axis2_allocator_t *allocator = axis2_allocator_init (NULL);
 	axis2_env_t *env = axis2_env_create (allocator);
-
+    
+    axis2c_home = AXIS2_GETENV("AXIS2C_HOME");
 	conf = axis2_conf_create(&env);
 	conf_ctx = axis2_conf_ctx_create(&env, conf);
 
@@ -42,11 +44,11 @@
 
 	svc_ctx = axis2_svc_ctx_create(&env, svc, svc_grp_ctx);
 
-	call = axis2_call_create(&env, svc_ctx);
+	call = axis2_call_create(&env, svc_ctx, axis2c_home);
 
 	msg_ctx = axis2_msg_ctx_create(&env, conf_ctx, NULL, NULL);
 	
-	msg_ctx_res = AXIS2_CALL_INVOKE_BLOCKING(call, &env, op, msg_ctx);
+	/*msg_ctx_res = AXIS2_CALL_INVOKE_BLOCKING(call, &env, op, msg_ctx);*/
 
     if (msg_ctx_res)
         printf("axis2_test_call_invoke_blocking SUCCESS\n");

Modified: webservices/axis2/trunk/c/test/core/context/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/context/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/context/Makefile.am Tue Jan 31 19:08:26 2006
@@ -9,6 +9,7 @@
 			        -laxis2_description \
 			        -laxis2_context \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_om \
 			        -laxis2_engine \
 	                -laxis2_deployment \

Modified: webservices/axis2/trunk/c/test/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/deployment/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/deployment/Makefile.am Tue Jan 31 19:08:26 2006
@@ -8,6 +8,7 @@
 					-laxis2_util \
                     -laxis2_context \
                     -laxis2_description \
+                    -laxis2_unix \
                     -laxis2_deployment \
                     -laxis2_phaseresolver \
                     -laxis2_om \

Modified: webservices/axis2/trunk/c/test/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/description/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/description/Makefile.am Tue Jan 31 19:08:26 2006
@@ -11,6 +11,7 @@
                     -laxis2_deployment \
                     -laxis2_phaseresolver \
                     -laxis2_om \
+                    -laxis2_unix \
                     -laxis2_wsdl \
                     -laxis2_engine \
                     -laxis2_parser \

Modified: webservices/axis2/trunk/c/test/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/engine/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/engine/Makefile.am Tue Jan 31 19:08:26 2006
@@ -9,6 +9,7 @@
                     -laxis2_description \
 	                -laxis2_context \
 	                -laxis2_util \
+                    -laxis2_unix \
 	                -laxis2_deployment \
 	                -laxis2_om \
 	                -laxis2_engine \

Modified: webservices/axis2/trunk/c/test/unit/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/Makefile.am Tue Jan 31 19:08:26 2006
@@ -16,6 +16,7 @@
                     -L$(top_builddir)/test/unit/xml/om/.libs -ltest_om \
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_om \
                     -laxis2_description \
                     -laxis2_deployment \

Modified: webservices/axis2/trunk/c/test/unit/core/context/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/context/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/context/Makefile.am Tue Jan 31 19:08:26 2006
@@ -17,6 +17,7 @@
                      -lcutest \
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_context \
                     -laxis2_description \
                     -laxis2_deployment \

Modified: webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am Tue Jan 31 19:08:26 2006
@@ -26,6 +26,7 @@
                      -lcutest \
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_context \
                     -laxis2_deployment \
                     -laxis2_description \

Modified: webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/description/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/description/Makefile.am Tue Jan 31 19:08:26 2006
@@ -26,6 +26,7 @@
                      -lcutest \
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_context \
                     -laxis2_description \
                     -laxis2_deployment \

Modified: webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am Tue Jan 31 19:08:26 2006
@@ -21,6 +21,7 @@
                      -lcutest \
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_context \
                     -laxis2_description \
                     -laxis2_deployment \

Modified: webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am Tue Jan 31 19:08:26 2006
@@ -23,6 +23,7 @@
                      -lcutest \
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_context \
                     -laxis2_description \
                     -laxis2_deployment \

Modified: webservices/axis2/trunk/c/test/unit/util/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/util/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/util/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/util/Makefile.am Tue Jan 31 19:08:26 2006
@@ -31,6 +31,7 @@
                      $(top_builddir)/test/unit/util/libtest_util.la \
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_context \
                     -laxis2_description \
                     -laxis2_deployment \

Modified: webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am Tue Jan 31 19:08:26 2006
@@ -20,6 +20,7 @@
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_util \
                     -laxis2_om \
+                    -laxis2_unix \
                     -laxis2_parser \
                     -L$(LIBXML2_LIB) $(LIBXML2_LIBNAME) \
                     -L$(GUTHTHILA_LIB) $(GUTHTHILA_LIBNAME)

Modified: webservices/axis2/trunk/c/test/xml/om/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/om/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/om/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/xml/om/Makefile.am Tue Jan 31 19:08:26 2006
@@ -8,6 +8,7 @@
                     -L$(AXIS2C_HOME)/lib \
                     -laxis2_om \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_parser \
                     -L$(LIBXML2_LIB) $(LIBXML2_LIBNAME) \
                     -L$(GUTHTHILA_LIB) $(GUTHTHILA_LIBNAME)

Modified: webservices/axis2/trunk/c/test/xml/soap/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/Makefile.am?rev=373971&r1=373970&r2=373971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/xml/soap/Makefile.am Tue Jan 31 19:08:26 2006
@@ -9,6 +9,7 @@
                     -laxis2_om \
                     -laxis2_soap \
                     -laxis2_util \
+                    -laxis2_unix \
                     -laxis2_libxml2 \
                     -laxis2_unix \
                     -L$(LIBXML2_LIB) $(LIBXML2_LIBNAME) \