[test] Adding automated parser tests to the C library

This commit is contained in:
Al
2016-02-17 17:19:03 -05:00
parent 43f41230b6
commit 37cfe8ab3b
3 changed files with 250 additions and 1 deletions

View File

@@ -9,6 +9,6 @@ CFLAGS = $(CFLAGS_BASE)
TESTS = test_libpostal
noinst_PROGRAMS = test_libpostal
test_libpostal_SOURCES = test.c test_expand.c test_transliterate.c test_numex.c test_trie.c
test_libpostal_SOURCES = test.c test_expand.c test_parser.c test_transliterate.c test_numex.c test_trie.c
test_libpostal_LDADD = ../src/libpostal.la
test_libpostal_CFLAGS = $(CFLAGS_O3)