automake: Run four test programs.

They finish successfully.
This commit is contained in:
Thomas Klausner 2015-09-04 15:06:37 +02:00
parent 634f97538b
commit 85500149bb
3 changed files with 8 additions and 3 deletions

4
.gitignore vendored
View file

@ -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

View file

@ -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 \

View file

@ -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