From: Mike Jerris Date: Fri, 26 Oct 2018 14:43:38 +0000 (+0000) Subject: FS-11487 convert tests to Makefile.am X-Git-Tag: v1.8.3~1^2~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ffc4a6e32ac94aa41c65b89cce53154e4f939d5c;p=thirdparty%2Ffreeswitch.git FS-11487 convert tests to Makefile.am --- diff --git a/Makefile.am b/Makefile.am index dcfee8161b..759189ecee 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = -SUBDIRS = . src build +SUBDIRS = . src build tests/unit AUTOMAKE_OPTIONS = foreign subdir-objects NAME = freeswitch @@ -865,16 +865,3 @@ support: @cp support-d/.bashrc ~ @test -f ~/.cc-mode-installed || sh support-d/install-cc-mode.sh && touch ~/.cc-mode-installed -# Using a non-recursive Makefile structure for the automated tests so that the tests have visibility into -# targets in the rest of the FreeSWITCH tree. This greatly simplifies dependency tracking at the expense -# of longer test target names. Since the tests are expected to be run easily and rapidly after minor source -# changes this is the most effective structure. - -check_PROGRAMS = - -include tests/unit/unit.mk - -TESTS = $(check_PROGRAMS) - -tests: $(check_PROGRAMS) -