You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ro...@apache.org on 2005/02/05 18:49:31 UTC

svn commit: r151512 - in apr/apr-util/trunk: dbd/apr_dbd_test.c test/ test/Makefile.in test/testdbd.c

Author: rooneg
Date: Sat Feb  5 09:49:30 2005
New Revision: 151512

URL: http://svn.apache.org/viewcvs?view=rev&rev=151512
Log:
Clean up the DBD tests a bit.

* dbd/apr_dbd_test.c: rename to...

* test/testdbd.c: this.

* test/Makefile.in: add testdbd to the build, but don't run it as part
  of the default tests, since it requires some manual setup.

* test: add testdbd to svn:ignore.

Added:
    apr/apr-util/trunk/test/testdbd.c
      - copied unchanged from r151510, apr/apr-util/trunk/dbd/apr_dbd_test.c
Removed:
    apr/apr-util/trunk/dbd/apr_dbd_test.c
Modified:
    apr/apr-util/trunk/test/   (props changed)
    apr/apr-util/trunk/test/Makefile.in

Propchange: apr/apr-util/trunk/test/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Sat Feb  5 09:49:30 2005
@@ -20,3 +20,4 @@
 testfile.txt
 manyfile.bin
 testxlate
+testdbd

Modified: apr/apr-util/trunk/test/Makefile.in
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/test/Makefile.in?view=diff&r1=151511&r2=151512
==============================================================================
--- apr/apr-util/trunk/test/Makefile.in (original)
+++ apr/apr-util/trunk/test/Makefile.in Sat Feb  5 09:49:30 2005
@@ -4,7 +4,7 @@
 
 PROGRAMS = testall testdbm testdate testxml testrmm \
 	   testreslist testqueue testxlate
-TARGETS = $(PROGRAMS)
+TARGETS = $(PROGRAMS) testdbd
 
 APRUTIL_DOTTED_VERSION=@APRUTIL_DOTTED_VERSION@
 APRUTIL_MAJOR_VERSION=@APRUTIL_MAJOR_VERSION@
@@ -32,6 +32,11 @@
 testdbm_LDADD =  $(TARGET_LIB_PATH)
 testdbm: $(testdbm_OBJECTS) $(testdbm_LDADD)
 	$(LINK) $(APRUTIL_LDFLAGS) $(testdbm_OBJECTS) $(testdbm_LDADD) $(PROGRAM_DEPENDENCIES)
+
+testdbd_OBJECTS = testdbd.lo
+testdbd_LDADD =  $(TARGET_LIB_PATH)
+testdbd: $(testdbd_OBJECTS) $(testdbd_LDADD)
+	$(LINK) $(APRUTIL_LDFLAGS) $(testdbd_OBJECTS) $(testdbd_LDADD) $(PROGRAM_DEPENDENCIES)
 
 testdate_OBJECTS = testdate.lo
 testdate_LDADD =  $(TARGET_LIB_PATH)