[phrases] Case where trie search finds a match, makes progress beyond the next token but has to fall back. Adding trie search test case

This commit is contained in:
Al
2016-02-08 01:07:56 -05:00
parent 3701d8380f
commit 9ac0379a65
5 changed files with 82 additions and 17 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_libpostal_SOURCES = test.c test_expand.c test_transliterate.c test_numex.c test_trie.c
test_libpostal_LDADD = ../src/libpostal.la
test_libpostal_CFLAGS = $(CFLAGS_O3)