diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-07-16 12:58:20 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-07-16 16:30:16 -0400 |
commit | d783b0fb0caf9d3c957cadb69f933eba1544d16e (patch) | |
tree | 93fdad39b10a80f1f289c01ecea3bb586f4bb7f8 /common/collection | |
parent | 08edf9d6445f3962bf31d5f3c9fa5c9cb363c30d (diff) | |
download | sssd-d783b0fb0caf9d3c957cadb69f933eba1544d16e.tar.gz sssd-d783b0fb0caf9d3c957cadb69f933eba1544d16e.tar.bz2 sssd-d783b0fb0caf9d3c957cadb69f933eba1544d16e.zip |
Run libcollection unit tests with 'make check'
Diffstat (limited to 'common/collection')
-rw-r--r-- | common/collection/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/collection/Makefile.am b/common/collection/Makefile.am index a802cf01..292a9a80 100644 --- a/common/collection/Makefile.am +++ b/common/collection/Makefile.am @@ -34,10 +34,12 @@ libcollection_la_SOURCES = \ ../trace/trace.h # Build unit test -noinst_PROGRAMS = collection_ut collection_stack_ut collection_queue_ut +check_PROGRAMS = collection_ut collection_stack_ut collection_queue_ut collection_ut_SOURCES = collection_ut.c collection_ut_LDADD = libcollection.la collection_stack_ut_SOURCES = collection_stack_ut.c collection_stack_ut_LDADD = libcollection.la collection_queue_ut_SOURCES = collection_queue_ut.c collection_queue_ut_LDADD = libcollection.la + +TESTS = collection_ut collection_stack_ut collection_queue_ut |