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 pi...@apache.org on 2008/01/31 16:09:53 UTC

svn commit: r617146 - in /webservices/axis2/trunk/c/util: ./ test/ test/allocator/ test/date_time/ test/duration/ test/link_list/ test/properties/ test/rand/ test/stack/ test/string_util/ test/uri/ test/url/ test/utils/

Author: pini
Date: Thu Jan 31 07:09:50 2008
New Revision: 617146

URL: http://svn.apache.org/viewvc?rev=617146&view=rev
Log:
Added Makefiles for new tests

Added:
    webservices/axis2/trunk/c/util/test/allocator/Makefile.am
    webservices/axis2/trunk/c/util/test/date_time/Makefile.am
    webservices/axis2/trunk/c/util/test/duration/Makefile.am
    webservices/axis2/trunk/c/util/test/link_list/Makefile.am
    webservices/axis2/trunk/c/util/test/properties/Makefile.am
    webservices/axis2/trunk/c/util/test/rand/Makefile.am
    webservices/axis2/trunk/c/util/test/stack/Makefile.am
    webservices/axis2/trunk/c/util/test/string_util/Makefile.am
    webservices/axis2/trunk/c/util/test/uri/Makefile.am
    webservices/axis2/trunk/c/util/test/url/Makefile.am
    webservices/axis2/trunk/c/util/test/utils/Makefile.am
Modified:
    webservices/axis2/trunk/c/util/configure.ac
    webservices/axis2/trunk/c/util/test/Makefile.am

Modified: webservices/axis2/trunk/c/util/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/configure.ac?rev=617146&r1=617145&r2=617146&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/configure.ac (original)
+++ webservices/axis2/trunk/c/util/configure.ac Thu Jan 31 07:09:50 2008
@@ -49,7 +49,7 @@
 #CFLAGS="$CFLAGS -ansi -Wall -D_LARGEFILE64_SOURCE -Wno-implicit-function-declaration"
 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
 if test "$GCC" = "yes"; then
-    CFLAGS="$CFLAGS -ansi -Wall -Werror -Wno-implicit-function-declaration "
+    CFLAGS="$CFLAGS -ansi -Wall -Wno-implicit-function-declaration "
 fi
 LDFLAGS="$LDFLAGS -lpthread"
 
@@ -253,6 +253,17 @@
     include/Makefile \
     test/Makefile \
     test/util/Makefile \
+    test/allocator/Makefile \
+    test/date_time/Makefile \
+    test/duration/Makefile \
+    test/link_list/Makefile \
+    test/properties/Makefile \
+    test/rand/Makefile \
+    test/stack/Makefile \
+    test/string_util/Makefile \
+    test/uri/Makefile \
+    test/url/Makefile \
+    test/utils/Makefile \
     ])
     
 AC_OUTPUT

Modified: webservices/axis2/trunk/c/util/test/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/Makefile.am?rev=617146&r1=617145&r2=617146&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/test/Makefile.am (original)
+++ webservices/axis2/trunk/c/util/test/Makefile.am Thu Jan 31 07:09:50 2008
@@ -1,2 +1,2 @@
-SUBDIRS = util 
+SUBDIRS = util allocator date_time duration link_list properties rand stack string_util uri url utils
 

Added: webservices/axis2/trunk/c/util/test/allocator/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/allocator/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/allocator/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/allocator/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = allocator_test
+allocator_test_SOURCES = allocator_test.c ../util/create_env.c
+
+allocator_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/date_time/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/date_time/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/date_time/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/date_time/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = date_time_test
+date_time_test_SOURCES = date_time_test.c ../util/create_env.c
+
+date_time_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/duration/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/duration/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/duration/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/duration/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = duration_test
+duration_test_SOURCES = duration_test.c ../util/create_env.c
+
+duration_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/link_list/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/link_list/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/link_list/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/link_list/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = link_list_test
+link_list_test_SOURCES = link_list_test.c ../util/create_env.c
+
+link_list_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/properties/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/properties/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/properties/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/properties/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = property_test 
+property_test_SOURCES = property_test.c ../util/create_env.c
+
+property_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/rand/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/rand/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/rand/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/rand/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = rand_test
+rand_test_SOURCES = rand_test.c ../util/create_env.c
+
+rand_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/stack/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/stack/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/stack/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/stack/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = stack_test 
+stack_test_SOURCES = stack_test.c ../util/create_env.c
+
+stack_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/string_util/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/string_util/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/string_util/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/string_util/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = string_util_test 
+string_util_test_SOURCES = string_util_test.c ../util/create_env.c
+
+string_util_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/uri/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/uri/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/uri/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/uri/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = uri_test 
+uri_test_SOURCES = uri_test.c ../util/create_env.c
+
+uri_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/url/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/url/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/url/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/url/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = url_test 
+url_test_SOURCES = url_test.c ../util/create_env.c
+
+url_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+

Added: webservices/axis2/trunk/c/util/test/utils/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/utils/Makefile.am?rev=617146&view=auto
==============================================================================
--- webservices/axis2/trunk/c/util/test/utils/Makefile.am (added)
+++ webservices/axis2/trunk/c/util/test/utils/Makefile.am Thu Jan 31 07:09:50 2008
@@ -0,0 +1,12 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = utils_test 
+utils_test_SOURCES = utils_test.c ../util/create_env.c
+
+utils_test_LDADD   =   \
+                    $(top_builddir)/src/libaxutil.la 
+
+INCLUDES = -I$(top_builddir)/include \
+			-I ../../../axiom/include \
+			-I ../../../include
+
+



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