From 83ea1be016fd5fc27ee721cf62a18716675815dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 2 May 2018 17:28:55 +0200 Subject: New upstream version 6.8.2 --- test/Makefile.am | 7 ++++++- test/test_utf8.c | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'test') 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); -- cgit v1.2.3