mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
test-reorg iterate
This commit is contained in:
parent
4d9d1ae3d4
commit
1c14ff41b4
1 changed files with 58 additions and 0 deletions
58
c/unit_test/Makefile.am
Normal file
58
c/unit_test/Makefile.am
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
|
||||
TESTS= $(check_PROGRAMS)
|
||||
check_PROGRAMS = test_mlrutil \
|
||||
test_argparse \
|
||||
test_byte_readers \
|
||||
test_peek_file_reader \
|
||||
test_parse_trie \
|
||||
test_lrec \
|
||||
test_multiple_containers \
|
||||
test_string_builder \
|
||||
test_lrec_evaluators \
|
||||
test_join_bucket_keeper
|
||||
|
||||
AM_CPPFLAGS= -I${srcdir}/..
|
||||
AM_CFLAGS= -Wall -Werror -std=gnu99 -O3
|
||||
|
||||
all_ldadd= \
|
||||
../cli/libcli.la \
|
||||
../containers/libcontainers.la \
|
||||
../stream/libstream.la \
|
||||
../input/libinput.la \
|
||||
../mapping/libmapping.la \
|
||||
../output/liboutput.la \
|
||||
../lib/libmlr.la \
|
||||
../dsls/libfdsl.la \
|
||||
../dsls/libpdsl.la \
|
||||
-lm
|
||||
|
||||
# Unit-test mains
|
||||
test_mlrutil_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_mlrutil_LDADD= ${all_ldadd}
|
||||
|
||||
test_argparse_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_argparse_LDADD= ${all_ldadd}
|
||||
|
||||
test_byte_readers_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_byte_readers_LDADD= ${all_ldadd}
|
||||
|
||||
test_peek_file_reader_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_peek_file_reader_LDADD= ${all_ldadd}
|
||||
|
||||
test_parse_trie_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_parse_trie_LDADD= ${all_ldadd}
|
||||
|
||||
test_lrec_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_lrec_LDADD= ${all_ldadd}
|
||||
|
||||
test_multiple_containers_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_multiple_containers_LDADD= ${all_ldadd}
|
||||
|
||||
test_string_builder_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_string_builder_LDADD= ${all_ldadd}
|
||||
|
||||
test_lrec_evaluators_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_lrec_evaluators_LDADD= ${all_ldadd}
|
||||
|
||||
test_join_bucket_keeper_CFLAGS= -std=gnu99 -g ${AM_CFLAGS}
|
||||
test_join_bucket_keeper_LDADD= ${all_ldadd}
|
||||
Loading…
Add table
Add a link
Reference in a new issue