diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-09-01 19:54:36 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-09-01 19:54:36 +0200 |
commit | a3ec3a8d99a951fc599818b1ea9a2aa218b10fa5 (patch) | |
tree | 3ee714ca52a54635d91c7e3c10b968e0048022be /test/Makefile.am | |
parent | 6b31069db6198cd50cc17f2c63917dd2df5775fb (diff) | |
parent | de5adb21f7224352652be174c66fb88e596bb49c (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index fe48403..2930e7f 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -5,11 +5,13 @@ AM_LDFLAGS = -L$(prefix)/lib AM_CFLAGS = AM_CPPFLAGS = -I../src -I$(includedir) -TESTS = testc testp testcu +TESTS = test_utf8 testc testp testcu -check_PROGRAMS = testc testp testcu +check_PROGRAMS = test_utf8 testc testp testcu -test: testc testp testcu +test: test_utf8 testc testp testcu + @echo "[Oniguruma API, UTF-8 check]" + @./test_utf8 | grep RESULT @echo "[Oniguruma API, ASCII/EUC-JP check]" @./testc | grep RESULT @echo "[POSIX API, ASCII/EUC-JP check]" @@ -17,6 +19,9 @@ test: testc testp testcu @echo "[Oniguruma API, UTF-16 check]" @./testcu | grep RESULT +test_utf8_SOURCES = test_utf8.c +test_utf8_LDADD = $(lib_onig) + testc_SOURCES = testc.c testc_LDADD = $(lib_onig) |