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 sa...@apache.org on 2005/11/07 08:51:57 UTC

svn commit: r331234 - in /webservices/axis2/trunk/c/modules/test/core: Makefile.am handlers/Makefile.am handlers/test_handler.c

Author: samisa
Date: Sun Nov  6 23:51:49 2005
New Revision: 331234

URL: http://svn.apache.org/viewcvs?rev=331234&view=rev
Log:
Added the makefiles and empty test source for handler test

Added:
    webservices/axis2/trunk/c/modules/test/core/Makefile.am
    webservices/axis2/trunk/c/modules/test/core/handlers/Makefile.am
    webservices/axis2/trunk/c/modules/test/core/handlers/test_handler.c

Added: webservices/axis2/trunk/c/modules/test/core/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/test/core/Makefile.am?rev=331234&view=auto
==============================================================================
--- webservices/axis2/trunk/c/modules/test/core/Makefile.am (added)
+++ webservices/axis2/trunk/c/modules/test/core/Makefile.am Sun Nov  6 23:51:49 2005
@@ -0,0 +1 @@
+SUBDIRS = handlers

Added: webservices/axis2/trunk/c/modules/test/core/handlers/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/test/core/handlers/Makefile.am?rev=331234&view=auto
==============================================================================
--- webservices/axis2/trunk/c/modules/test/core/handlers/Makefile.am (added)
+++ webservices/axis2/trunk/c/modules/test/core/handlers/Makefile.am Sun Nov  6 23:51:49 2005
@@ -0,0 +1,10 @@
+prgbindir=$(prefix)/bin/system_test
+prgbin_PROGRAMS = test_handler
+SUBDIRS =
+AM_CPPFLAGS = $(CPPFLAGS) -g -O2 -pthread
+test_handler_SOURCES = test_handler.c
+
+test_handler_LDADD   =  $(LDFLAGS) -L$(top_builddir)/modules/util/src/.libs -laxis2_util
+                    
+INCLUDES = -I${CUTEST_HOME}/include -I$(top_builddir)/include \
+            -I$(top_builddir)/modules/util/src

Added: webservices/axis2/trunk/c/modules/test/core/handlers/test_handler.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/test/core/handlers/test_handler.c?rev=331234&view=auto
==============================================================================
--- webservices/axis2/trunk/c/modules/test/core/handlers/test_handler.c (added)
+++ webservices/axis2/trunk/c/modules/test/core/handlers/test_handler.c Sun Nov  6 23:51:49 2005
@@ -0,0 +1,7 @@
+#include <axis2_handler.h>
+#include <axis2_handler_desc.h>
+
+int main()
+{
+    return 0;
+}