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/07 10:34:17 UTC

svn commit: r375553 - in /webservices/axis2/trunk/c: ./ modules/ modules/core/ modules/core/addr/ modules/core/clientapi/ modules/core/context/ modules/core/deployment/ modules/core/description/ modules/core/engine/ modules/core/phaseresolver/ modules/...

Author: damitha
Date: Tue Feb  7 01:34:08 2006
New Revision: 375553

URL: http://svn.apache.org/viewcvs?rev=375553&view=rev
Log:
Adds "make check" target.

Modified:
    webservices/axis2/trunk/c/Makefile.am
    webservices/axis2/trunk/c/configure.ac
    webservices/axis2/trunk/c/modules/Makefile.am
    webservices/axis2/trunk/c/modules/core/Makefile.am
    webservices/axis2/trunk/c/modules/core/addr/Makefile.am
    webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am
    webservices/axis2/trunk/c/modules/core/context/Makefile.am
    webservices/axis2/trunk/c/modules/core/deployment/Makefile.am
    webservices/axis2/trunk/c/modules/core/description/Makefile.am
    webservices/axis2/trunk/c/modules/core/engine/Makefile.am
    webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am
    webservices/axis2/trunk/c/modules/core/receivers/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/http/receiver/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/http/sender/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/http/server/Makefile.am
    webservices/axis2/trunk/c/modules/core/util/Makefile.am
    webservices/axis2/trunk/c/modules/mod_addr/Makefile.am
    webservices/axis2/trunk/c/modules/platforms/unix/Makefile.am
    webservices/axis2/trunk/c/modules/util/Makefile.am
    webservices/axis2/trunk/c/modules/wsdl/Makefile.am
    webservices/axis2/trunk/c/modules/xml/Makefile.am
    webservices/axis2/trunk/c/modules/xml/om/Makefile.am
    webservices/axis2/trunk/c/modules/xml/parser/Makefile.am
    webservices/axis2/trunk/c/modules/xml/parser/guththila/Makefile.am
    webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/Makefile.am
    webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/src/Makefile.am
    webservices/axis2/trunk/c/modules/xml/parser/libxml2/Makefile.am
    webservices/axis2/trunk/c/samples/server/echo/Makefile.am
    webservices/axis2/trunk/c/samples/server/math/Makefile.am
    webservices/axis2/trunk/c/test/Makefile.am
    webservices/axis2/trunk/c/test/core/Makefile.am
    webservices/axis2/trunk/c/test/core/addr/Makefile.am
    webservices/axis2/trunk/c/test/core/clientapi/Makefile.am
    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/core/transport/Makefile.am
    webservices/axis2/trunk/c/test/core/transport/http/Makefile.am
    webservices/axis2/trunk/c/test/unit/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/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/wsdl/Makefile.am
    webservices/axis2/trunk/c/test/unit/xml/Makefile.am
    webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am
    webservices/axis2/trunk/c/test/util/Makefile.am
    webservices/axis2/trunk/c/test/xml/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/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/Makefile.am (original)
+++ webservices/axis2/trunk/c/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,6 @@
+TESTS =
 xmldir=$(prefix)
-SUBDIRS = modules $(TESTS) $(SAMPLES) ides
+SUBDIRS = modules $(TESTDIR) $(SAMPLES) ides
 include_HEADERS=$(top_builddir)/include/*.h
 xml_DATA= samples/server/axis2.xml
 EXTRA_DIST = build.sh autogen.sh

Modified: webservices/axis2/trunk/c/configure.ac
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/configure.ac?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/configure.ac (original)
+++ webservices/axis2/trunk/c/configure.ac Tue Feb  7 01:34:08 2006
@@ -83,16 +83,16 @@
 [ case "${enableval}" in
   no)
     AC_MSG_RESULT(no)
-    TESTS=""
+    TESTDIR=""
     ;;
   *)
     AC_MSG_RESULT(yes)
-    TESTS="test"
+    TESTDIR="test"
 
     ;;
   esac ],
   AC_MSG_RESULT(no)
-  TESTS=""
+  TESTDIR=""
 )
 
 AC_MSG_CHECKING(whether to build samples)
@@ -119,7 +119,7 @@
 AC_SUBST(GUTHTHILA)
 AC_SUBST(LIBXML2_LIBNAME)
 AC_SUBST(GUTHTHILA_LIBNAME)
-AC_SUBST(TESTS)
+AC_SUBST(TESTDIR)
 AC_SUBST(SAMPLES)
 
 AC_CONFIG_FILES([Makefile \

Modified: webservices/axis2/trunk/c/modules/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,2 +1,3 @@
+TESTS =
 SUBDIRS = platforms/unix util xml wsdl core mod_addr
 EXTRA_DIST = platforms/axis2_platform_auto_sense.h

Modified: webservices/axis2/trunk/c/modules/core/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = context engine phaseresolver description deployment addr receivers clientapi util transport 

Modified: webservices/axis2/trunk/c/modules/core/addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/addr/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/addr/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_addr.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_addr_la_SOURCES = relates_to.c svc_name.c any_content_type.c endpoint_ref.c msg_info_headers.c

Modified: webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_clientapi.la
 noinst_HEADERS = callback_recv.h listener_manager.h
 

Modified: webservices/axis2/trunk/c/modules/core/context/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/context/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_context.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_context_la_SOURCES = ctx.c \

Modified: webservices/axis2/trunk/c/modules/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_deployment.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_deployment_la_SOURCES = phases_info.c \

Modified: webservices/axis2/trunk/c/modules/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/description/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_description.la
 noinst_HEADERS = axis2_description.h
 

Modified: webservices/axis2/trunk/c/modules/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/engine/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/engine/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_engine.la
 AM_CPPFLAGS = $(CPPFLAGS)
 

Modified: webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_phaseresolver.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_phaseresolver_la_SOURCES = phase_holder.c \

Modified: webservices/axis2/trunk/c/modules/core/receivers/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/receivers/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/receivers/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/receivers/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_receivers.la
 AM_CPPFLAGS = $(CPPFLAGS)
 

Modified: webservices/axis2/trunk/c/modules/core/transport/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,2 +1,3 @@
+TESTS =
 SUBDIRS = http http/sender http/receiver http/server
 noinst_HEADERS = axis2_transport_receiver.h axis2_transport_sender.h

Modified: webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_http_transport.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_http_transport_la_SOURCES = http_worker.c \

Modified: webservices/axis2/trunk/c/modules/core/transport/http/receiver/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/receiver/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/receiver/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/receiver/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_http_receiver.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_http_receiver_la_SOURCES = simple_http_svr_conn.c\

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/sender/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_http_sender.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_http_sender_la_SOURCES = http_transport_sender.c\

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/server/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 prgbindir=$(prefix)/bin/
 prgbin_PROGRAMS = axis2_http_server
 SUBDIRS =

Modified: webservices/axis2/trunk/c/modules/core/util/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/util/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/util/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/util/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_core_util.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_core_util_la_SOURCES = core_utils.c

Modified: webservices/axis2/trunk/c/modules/mod_addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/mod_addr/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/mod_addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/mod_addr/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,6 +1,8 @@
+TESTS =
 prglibdir=$(prefix)/modules/addressing
 prglib_LTLIBRARIES = libaxis2_mod_addr.la
-prglib_DATA= module.xml
+#prglib_DATA= module.xml
+EXTRA_DIST = module.xml
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_mod_addr_la_SOURCES = addr_in_handler.c \
                                 addr_out_handler.c \

Modified: webservices/axis2/trunk/c/modules/platforms/unix/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/platforms/unix/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/platforms/unix/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/platforms/unix/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_unix.la
 noinst_HEADERS = axis2_unix.h axis2_uuid_gen_unix.h
 AM_CPPFLAGS = $(CPPFLAGS)

Modified: webservices/axis2/trunk/c/modules/util/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/util/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_util.la
 noinst_HEADERS = axis2_hash.h \
 				axis2_string.h \

Modified: webservices/axis2/trunk/c/modules/wsdl/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/wsdl/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/wsdl/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/wsdl/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_wsdl.la
 noinst_HEADERS = axis2_wsdl.h
 AM_CPPFLAGS = $(CPPFLAGS)

Modified: webservices/axis2/trunk/c/modules/xml/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = parser om soap

Modified: webservices/axis2/trunk/c/modules/xml/om/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/om/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_om.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_om_la_SOURCES = om_attribute.c \

Modified: webservices/axis2/trunk/c/modules/xml/parser/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,2 +1,3 @@
+TESTS =
 SUBDIRS = $(LIBXML2) $(GUTHTHILA)
 noinst_HEADERS = axis2_xml_writer.h axis2_xml_reader.h

Modified: webservices/axis2/trunk/c/modules/xml/parser/guththila/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/guththila/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/guththila/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/guththila/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_guththila.la
 SUBDIRS = impl
 AM_CPPFLAGS = $(CPPFLAGS)

Modified: webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = src

Modified: webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/src/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/src/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/src/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/guththila/impl/src/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libguththila.la
 AM_CPPFLAGS = $(CPPFLAGS) 
 libguththila_la_SOURCES = guththila_token.c \

Modified: webservices/axis2/trunk/c/modules/xml/parser/libxml2/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/libxml2/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/libxml2/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/libxml2/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 lib_LTLIBRARIES = libaxis2_libxml2.la libaxis2_parser.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libaxis2_libxml2_la_SOURCES = libxml2_reader_wrapper.c \

Modified: webservices/axis2/trunk/c/samples/server/echo/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/samples/server/echo/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/server/echo/Makefile.am (original)
+++ webservices/axis2/trunk/c/samples/server/echo/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,6 +1,7 @@
 prglibdir=$(prefix)/services/echo
 prglib_LTLIBRARIES = libecho.la
-prglib_DATA= services.xml
+#prglib_DATA= services.xml
+EXTRA_DIST = services.xml
 noinst_HEADERS = echo.h
 SUBDIRS =
 libecho_la_SOURCES = echo.c echo_skeleton.c

Modified: webservices/axis2/trunk/c/samples/server/math/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/samples/server/math/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/server/math/Makefile.am (original)
+++ webservices/axis2/trunk/c/samples/server/math/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,6 +1,7 @@
 prglibdir=$(prefix)/services/math
 prglib_LTLIBRARIES = libmath.la
-prglib_DATA=services.xml
+#prglib_DATA=services.xml
+EXTRA_DIST = services.xml
 noinst_HEADERS = math.h
 SUBDIRS =
 libmath_la_SOURCES = math.c math_skeleton.c

Modified: webservices/axis2/trunk/c/test/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = util xml unit core

Modified: webservices/axis2/trunk/c/test/core/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = description context engine deployment addr clientapi transport

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/addr/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,5 @@
-prgbindir=$(prefix)/bin/system_test
-prgbin_PROGRAMS = test_addr
+TESTS = test_addr
+check_PROGRAMS = test_addr
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -pthread
 test_addr_SOURCES = test_addr.c

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/clientapi/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/clientapi/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,5 @@
-prgbindir=$(prefix)/bin/system_test
-prgbin_PROGRAMS = test_client test_clientapi
+TESTS = test_client test_clientapi
+check_PROGRAMS = test_client test_clientapi
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -pthread 
 test_client_SOURCES = test_client.c

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/context/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,5 @@
-prgbindir=$(prefix)/bin/system_test
-prgbin_PROGRAMS = test_context
+TESTS = test_context
+check_PROGRAMS = test_context
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -pthread
 test_context_SOURCES = test_context.c

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/deployment/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 prgbindir=$(prefix)/bin/system_test
 prgbin_PROGRAMS = test_deployment
 SUBDIRS =

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/description/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 prgbindir=$(prefix)/bin/system_test
 prgbin_PROGRAMS = test_description
 SUBDIRS =

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/engine/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,5 @@
-prgbindir=$(prefix)/bin/system_test
-prgbin_PROGRAMS = test_engine
+TESTS = test_engine
+check_PROGRAMS = test_engine
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -pthread
 test_engine_SOURCES = test_engine.c

Modified: webservices/axis2/trunk/c/test/core/transport/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/transport/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/transport/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/transport/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = http

Modified: webservices/axis2/trunk/c/test/core/transport/http/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/transport/http/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/transport/http/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/transport/http/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,5 @@
-prgbindir=$(prefix)/bin/system_test
-prgbin_PROGRAMS = test_http_transport
+TESTS = test_http_transport
+check_PROGRAMS = test_http_transport
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -pthread
 test_http_transport_SOURCES = test_http_transport.c

Modified: webservices/axis2/trunk/c/test/unit/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 prgbindir=$(prefix)/bin/unit_test
 prgbin_PROGRAMS = main_unit_test_suite
 SUBDIRS = util core xml wsdl

Modified: webservices/axis2/trunk/c/test/unit/core/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = context description engine phaseresolver 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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/context/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS = context_test
 prgbindir=$(prefix)/bin/unit_test
 prglibdir=$(prefix)/lib/unit_test
 prglib_LTLIBRARIES = libtest_context.la
@@ -10,7 +11,7 @@
             -I$(top_builddir)/modules/util \
             -I${CUTEST_HOME}/include
 
-prgbin_PROGRAMS = context_test
+check_PROGRAMS = context_test
 context_test_SOURCES = main.c
 context_test_LDADD   =   libtest_context.la  \
                      -L$(CUTEST_HOME)/lib \

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 prgbindir=$(prefix)/bin/unit_test
 prglibdir=$(prefix)/lib/unit_test
 prglib_LTLIBRARIES = libtest_deployment.la

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/description/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,4 +1,4 @@
-prgbindir=$(prefix)/bin/unit_test
+TESTS = description_test
 prglibdir=$(prefix)/lib/unit_test
 prglib_LTLIBRARIES = libtest_description.la
 AM_CPPFLAGS = $(CPPFLAGS)
@@ -19,7 +19,7 @@
             -I${CUTEST_HOME}/include \
             -I$(top_builddir)/modules/platforms
 
-prgbin_PROGRAMS = description_test
+check_PROGRAMS = description_test
 description_test_SOURCES = main.c
 description_test_LDADD   =   libtest_description.la  \
                      -L$(CUTEST_HOME)/lib \

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,4 +1,4 @@
-prgbindir=$(prefix)/bin/unit_test
+TESTS = engine_test
 prglibdir=$(prefix)/lib/unit_test
 prglib_LTLIBRARIES = libtest_engine.la
 AM_CPPFLAGS = $(CPPFLAGS)
@@ -14,7 +14,7 @@
             -I${CUTEST_HOME}/include \
             -I$(top_builddir)/modules/platforms
 
-prgbin_PROGRAMS = engine_test
+check_PROGRAMS = engine_test
 engine_test_SOURCES = main.c
 engine_test_LDADD   =   libtest_engine.la  \
                      -L$(CUTEST_HOME)/lib \

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,4 +1,4 @@
-prgbindir=$(prefix)/bin/unit_test
+TESTS = phaseresolver_test
 prglibdir=$(prefix)/lib/unit_test
 prglib_LTLIBRARIES = libtest_phaseresolver.la
 AM_CPPFLAGS = $(CPPFLAGS)
@@ -16,7 +16,7 @@
             -I${CUTEST_HOME}/include \
             -I$(top_builddir)/modules/platforms
 
-prgbin_PROGRAMS = phaseresolver_test
+check_PROGRAMS = phaseresolver_test
 phaseresolver_test_SOURCES = main.c
 phaseresolver_test_LDADD   =   libtest_phaseresolver.la  \
                      -L$(CUTEST_HOME)/lib \

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/util/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/util/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,3 +1,4 @@
+TESTS =
 prgbindir=$(prefix)/bin/unit_test
 prglibdir=$(prefix)/lib/unit_test
 prglib_LTLIBRARIES = libtest_util.la

Modified: webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,4 +1,4 @@
-prgbindir=$(prefix)/bin/unit_test
+TESTS = wsdl_test
 prglibdir=$(prefix)/lib/unit_test
 prglib_LTLIBRARIES = libtest_wsdl.la
 AM_CPPFLAGS = $(CPPFLAGS)
@@ -16,7 +16,7 @@
             -I$(top_builddir)/modules/platforms
 
 
-prgbin_PROGRAMS = wsdl_test
+check_PROGRAMS = wsdl_test
 wsdl_test_SOURCES = main.c
 
 wsdl_test_LDADD   =   \

Modified: webservices/axis2/trunk/c/test/unit/xml/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/xml/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/xml/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/xml/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = om

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/xml/om/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,4 +1,4 @@
-prgbindir=$(prefix)/bin/unit_test
+TESTS = om_test
 prglibdir=$(prefix)/lib/unit_test
 noinst_HEADERS = om_node_test.h
 prglib_LTLIBRARIES = libtest_om.la
@@ -13,7 +13,7 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/platforms
 
-prgbin_PROGRAMS = om_test
+check_PROGRAMS = om_test
 om_test_SOURCES = main.c
 om_test_LDADD   =   libtest_om.la  \
                      -L$(CUTEST_HOME)/lib \

Modified: webservices/axis2/trunk/c/test/util/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/util/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/util/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/util/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,6 +1,6 @@
-prgbindir=$(prefix)/bin/system_test
+TESTS = test_util
 noinst_HEADERS = test_log.h
-prgbin_PROGRAMS = test_util
+check_PROGRAMS = test_util
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS)
 test_util_SOURCES = test_util.c test_log.c

Modified: webservices/axis2/trunk/c/test/xml/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/Makefile.am?rev=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/xml/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1 +1,2 @@
+TESTS =
 SUBDIRS = om soap

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/om/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/xml/om/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,5 @@
-prgbindir=$(prefix)/bin/system_test
-prgbin_PROGRAMS = test_om
+TESTS = test_om
+check_PROGRAMS = test_om
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -O2 -pthread
 test_om_SOURCES = test_om.c

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=375553&r1=375552&r2=375553&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/xml/soap/Makefile.am Tue Feb  7 01:34:08 2006
@@ -1,5 +1,5 @@
-prgbindir=$(prefix)/bin/system_test
-prgbin_PROGRAMS = test_soap
+TESTS = test_soap
+check_PROGRAMS = test_soap
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -O2 -pthread
 test_soap_SOURCES = test_soap.c