diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-09-11 15:32:19 -0400 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-09-11 16:22:58 -0400 |
commit | 1df8e4158e752f1f010394d09e8a5e4f8201fd7e (patch) | |
tree | 94f30b280b81acce819ee22a13ced4c1a8dd45c9 /common | |
parent | 81fdd5adc085c2cc3ff3b4a8ca309b91db30c5fe (diff) | |
download | sssd-1df8e4158e752f1f010394d09e8a5e4f8201fd7e.tar.gz sssd-1df8e4158e752f1f010394d09e8a5e4f8201fd7e.tar.bz2 sssd-1df8e4158e752f1f010394d09e8a5e4f8201fd7e.zip |
Add 'make tests' target
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile.am | 5 | ||||
-rw-r--r-- | common/collection/Makefile.am | 2 | ||||
-rw-r--r-- | common/dhash/Makefile.am | 2 | ||||
-rw-r--r-- | common/elapi/Makefile.am | 5 | ||||
-rw-r--r-- | common/elapi/elapi_test/Makefile.am | 2 | ||||
-rw-r--r-- | common/ini/Makefile.am | 2 | ||||
-rw-r--r-- | common/path_utils/Makefile.am | 1 | ||||
-rw-r--r-- | common/trace/Makefile.am | 2 |
8 files changed, 21 insertions, 0 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 445a8435..ac759001 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -16,3 +16,8 @@ libsssd_util_la_CFLAGS = $(AM_CFLAGS) \ -I ./elapi \ -I ./trace endif + +tests: all + for subdir in $(SUBDIRS); do \ + $(MAKE) -C $$subdir $@; \ + done diff --git a/common/collection/Makefile.am b/common/collection/Makefile.am index 292a9a80..6102f65d 100644 --- a/common/collection/Makefile.am +++ b/common/collection/Makefile.am @@ -43,3 +43,5 @@ collection_queue_ut_SOURCES = collection_queue_ut.c collection_queue_ut_LDADD = libcollection.la TESTS = collection_ut collection_stack_ut collection_queue_ut + +tests: all $(check_PROGRAMS) diff --git a/common/dhash/Makefile.am b/common/dhash/Makefile.am index b8d5ce6f..71bc144f 100644 --- a/common/dhash/Makefile.am +++ b/common/dhash/Makefile.am @@ -21,3 +21,5 @@ dhash_example_LDADD = dhash.o examplesdir = $(docdir)/examples dist_noinst_DATA += dhash_test.c dhash_example.c + +tests: all $(check_PROGRAMS) diff --git a/common/elapi/Makefile.am b/common/elapi/Makefile.am index c589ec59..7e487a2d 100644 --- a/common/elapi/Makefile.am +++ b/common/elapi/Makefile.am @@ -58,3 +58,8 @@ libelapi_la_SOURCES = \ elapi.h libelapi_la_LIBADD = libprovider.la libelapibasic.la + +tests: all + for subdir in $(SUBDIRS); do \ + $(MAKE) -C $$subdir $@; \ + done diff --git a/common/elapi/elapi_test/Makefile.am b/common/elapi/elapi_test/Makefile.am index f2368f12..1a0c6c93 100644 --- a/common/elapi/elapi_test/Makefile.am +++ b/common/elapi/elapi_test/Makefile.am @@ -47,3 +47,5 @@ elapi_ut_SOURCES = elapi_ut.c elapi_ut_LDADD = libelapi_test.la ../../ini/libini_config.la ../../collection/libcollection.la -ldl TESTS = elapi_ut + +tests: all $(check_PROGRAMS) diff --git a/common/ini/Makefile.am b/common/ini/Makefile.am index 39ab40b3..2679be37 100644 --- a/common/ini/Makefile.am +++ b/common/ini/Makefile.am @@ -34,3 +34,5 @@ ini_config_ut_SOURCES = ini_config_ut.c ini_config_ut_LDADD = libini_config.la ../collection/libcollection.la TESTS = ini_config_ut + +tests: all $(check_PROGRAMS) diff --git a/common/path_utils/Makefile.am b/common/path_utils/Makefile.am index fdda791c..3961a06d 100644 --- a/common/path_utils/Makefile.am +++ b/common/path_utils/Makefile.am @@ -15,3 +15,4 @@ libpath_utils_la_SOURCES = \ path_utils.c \ path_utils.h +tests: all $(check_PROGRAMS) diff --git a/common/trace/Makefile.am b/common/trace/Makefile.am index f0cefd73..b097ff20 100644 --- a/common/trace/Makefile.am +++ b/common/trace/Makefile.am @@ -1 +1,3 @@ dist_noinst_HEADERS = trace.h + +tests: all |