From 85500149bb151ad7ba47db244cfe9c9a05d1f701 Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Fri, 4 Sep 2015 15:06:37 +0200 Subject: [PATCH] automake: Run four test programs. They finish successfully. --- .gitignore | 4 ++++ c/containers/Makefile.am | 3 ++- c/input/Makefile.am | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5bdd6aae0..693f9ff85 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,8 @@ c/dsls/fdm tags *.la *.lo +*.log +*.trs *~ .deps/ .libs/ @@ -52,3 +54,5 @@ autotools/ stamp-h1 test_join_bucket_keeper test_lrec +test_parse_trie +test_string_byte_reader diff --git a/c/containers/Makefile.am b/c/containers/Makefile.am index c10f79fdd..2ba288b52 100644 --- a/c/containers/Makefile.am +++ b/c/containers/Makefile.am @@ -38,7 +38,8 @@ libcontainers_la_LIBADD= \ ../lib/libmlr.la \ ../mapping/libmapping.la -noinst_PROGRAMS= test_join_bucket_keeper test_lrec test_parse_trie +TESTS= $(check_PROGRAMS) +check_PROGRAMS= test_join_bucket_keeper test_lrec test_parse_trie test_join_bucket_keeper_LDADD= ../input/libinput.la \ ../mapping/libmapping.la \ diff --git a/c/input/Makefile.am b/c/input/Makefile.am index af40f35ea..5aeae5a40 100644 --- a/c/input/Makefile.am +++ b/c/input/Makefile.am @@ -25,8 +25,8 @@ libinput_la_LIBADD= ../lib/libmlr.la libinput_la_CPPFLAGS= -I${srcdir}/../ libinput_la_CFLAGS= -std=gnu99 - -noinst_PROGRAMS= test_string_byte_reader +TESTS= $(check_PROGRAMS) +check_PROGRAMS= test_string_byte_reader test_string_byte_reader_LDADD= libinput.la \ ../lib/libmlr.la