You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2007/05/03 08:37:03 UTC

svn commit: r534727 - in /webservices/axis2/trunk/c: INSTALL test/core/clientapi/test_clientapi.c util/test/util/test_thread.c

Author: samisa
Date: Wed May  2 23:37:02 2007
New Revision: 534727

URL: http://svn.apache.org/viewvc?view=rev&rev=534727
Log:
Fixed some bugs and typos

Modified:
    webservices/axis2/trunk/c/INSTALL
    webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c
    webservices/axis2/trunk/c/util/test/util/test_thread.c

Modified: webservices/axis2/trunk/c/INSTALL
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/INSTALL?view=diff&rev=534727&r1=534726&r2=534727
==============================================================================
--- webservices/axis2/trunk/c/INSTALL (original)
+++ webservices/axis2/trunk/c/INSTALL Wed May  2 23:37:02 2007
@@ -95,6 +95,14 @@
    NOTE: If you don't provide the --prefix configure option, it will by default
          be installed into "/usr/local/axis2c" directory.
 
+   You could run make check to test if everything is working fine. However, note 
+   that the test/core/clientapi/test_clientapi program would fail unless 
+   AXIS2C_HOME points to the installed location. (It's looking for Axis2/C 
+   repository)  This means you really should run "make && make install", 
+   then set AXIS2C_HOME=/path/to/install, and then "make check".  
+   That's a little different than the usual "make && make check && make install" 
+   process.
+
    You may need to try Axis2/C with guththila xml parser. You can do it by giving
    "--enable-guththila=yes" as a configure option.
     

Modified: webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c?view=diff&rev=534727&r1=534726&r2=534727
==============================================================================
--- webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c (original)
+++ webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c Wed May  2 23:37:02 2007
@@ -55,7 +55,8 @@
     if (!svc_client)
     {
         printf("axis2_test axis2_svc_client_create FAILURE\n");
-        exit(-1);
+        printf("Client repository path not properly set. Please check AXIS2C_HOME setting\n");
+        return;
     }
 
     options = axis2_options_create(env);

Modified: webservices/axis2/trunk/c/util/test/util/test_thread.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/util/test_thread.c?view=diff&rev=534727&r1=534726&r2=534727
==============================================================================
--- webservices/axis2/trunk/c/util/test/util/test_thread.c (original)
+++ webservices/axis2/trunk/c/util/test/util/test_thread.c Wed May  2 23:37:02 2007
@@ -74,7 +74,7 @@
     printf("x = %d \n", ++x);
     axutil_thread_mutex_unlock(thread_lock);
 
-    axutil_thread_exit(td, env->allocator);
+    /*axutil_thread_exit(td, env->allocator);*/
 
     return (void*)1;
 }
@@ -101,7 +101,6 @@
 
     if (t2) printf("success - test_axutil_thread_create - axutil_thread_create \n");
     else printf("failure - test_axutil_thread_create - axutil_thread_create \n");
-
 
     rv = axutil_thread_join(t1);
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org