Commented out debugging output.

1999-03-14  Jeff Garzik  <jgarzik@pobox.com>

        * gdate.c:
        Commented out debugging output.

        * tests/Makefile.am, tests/date-test.c:
        Added test of the GDate module, based closely on testgdate.c.

        * tests/Makefile.am:
        Bugfix - compile tests with @GLIB_DEBUG_FLAGS@.
This commit is contained in:
Jeff Garzik
1999-03-14 23:46:51 +00:00
committed by Jeff Garzik
parent bfc21756e1
commit 21d0ac27b8
13 changed files with 594 additions and 1 deletions

View File

@@ -1,8 +1,9 @@
INCLUDES = -I$(top_srcdir)
INCLUDES = -I$(top_srcdir) @GLIB_DEBUG_FLAGS@
TESTS = \
array-test \
date-test \
dirname-test \
hash-test \
list-test \
@@ -19,6 +20,7 @@ TESTS = \
noinst_PROGRAMS = $(TESTS)
array_test_LDADD = $(top_builddir)/libglib.la
date_test_LDADD = $(top_builddir)/libglib.la
dirname_test_LDADD = $(top_builddir)/libglib.la
hash_test_LDADD = $(top_builddir)/libglib.la
list_test_LDADD = $(top_builddir)/libglib.la