X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.am;h=98d21ebe7ab3a2918c15624d3a28d2aae88dc90b;hb=ef57e4a7956ef591db6578d8ca928b4287e75a3f;hp=b2ac4b30d93048afeefd305fd6881e1bd30851dd;hpb=7cc1a446e717362f029e44e5b06ca9cac89552be;p=miniexpect.git diff --git a/Makefile.am b/Makefile.am index b2ac4b3..98d21eb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,7 +41,8 @@ example_sshpass_LDADD = libminiexpect.la TESTS = $(check_PROGRAMS) check_PROGRAMS = \ test-spawn \ - test-ls-version + test-ls-version \ + test-multi-match test_spawn_SOURCES = test-spawn.c tests.h miniexpect.h test_spawn_CFLAGS = $(PCRE_CFLAGS) -Wall @@ -51,6 +52,19 @@ test_ls_version_SOURCES = test-ls-version.c tests.h miniexpect.h test_ls_version_CFLAGS = $(PCRE_CFLAGS) -Wall test_ls_version_LDADD = libminiexpect.la +test_multi_match_SOURCES = test-multi-match.c tests.h miniexpect.h +test_multi_match_CFLAGS = $(PCRE_CFLAGS) -Wall +test_multi_match_LDADD = libminiexpect.la + +# parallel-tests breaks the ability to put 'valgrind' into +# TESTS_ENVIRONMENT. Hence we have to work around it: +check-valgrind: + for t in $(TESTS); do \ + $(LIBTOOL) --mode=execute $(VG) ./$$t; \ + r=$$?; \ + if [ $$r -ne 0 ]; then exit $$r; fi; \ + done + # Clean. CLEANFILES = *~