diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/Makefile.am | 7 | ||||
| -rw-r--r-- | test/test_utf8.c | 4 | 
2 files changed, 10 insertions, 1 deletions
| diff --git a/test/Makefile.am b/test/Makefile.am index 6559a77..2dde7d6 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -9,7 +9,7 @@ TESTS = test_utf8 testc testp testcu  check_PROGRAMS = test_utf8 testc testp testcu -test: test_utf8 testc testp testcu +test: test_uchar test_utf8 testc testp testcu  	@echo "[Oniguruma API, UTF-8 check]"  	@./test_utf8  | grep RESULT  	@echo "[Oniguruma API, ASCII/EUC-JP check]" @@ -19,6 +19,11 @@ test: test_utf8 testc testp testcu  	@echo "[Oniguruma API, UTF-16 check]"  	@./testcu | grep RESULT +test_uchar: +	@echo "[UChar in oniguruma.h check]" +	@grep "\(^\|[^g]\)UChar" $(top_srcdir)/src/oniguruma.h +	@echo "" +  test_utf8_SOURCES = test_utf8.c  test_utf8_LDADD = $(lib_onig) diff --git a/test/test_utf8.c b/test/test_utf8.c index 286158d..bd3ed16 100644 --- a/test/test_utf8.c +++ b/test/test_utf8.c @@ -595,6 +595,10 @@ extern int main(int argc, char* argv[])    x2("a\\Kb", "ab", 1, 2);    x2("(a\\Kb|ac\\Kd)", "acd", 2, 3);    x2("(a\\Kb|\\Kac\\K)*", "acababacab", 9, 10); +  x2("(?:()|())*\\1", "abc", 0, 0); +  x2("(?:()|())*\\2", "abc", 0, 0); +  x2("(?:()|()|())*\\3\\1", "abc", 0, 0); +  x2("(|(?:a(?:\\g'1')*))b|", "abc", 0, 2);    x2("(?~)", "", 0, 0);    x2("(?~)", "A", 0, 0); | 
