diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-09-05 21:54:15 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-09-05 21:54:15 +0200 |
commit | 6bf91b141b7b3e3524f422d4c18bccf7f87aecd1 (patch) | |
tree | 854398618f6cbc5187abe5651a2bb75a17ba9b7c /test | |
parent | 6dcf2054b927e3bd6889ae8eec0f9b5669fcb025 (diff) | |
parent | 777189a11acf313a6f2f2255a475b40d4330ff65 (diff) |
Merge branch 'release/debian/6.8.2-1'debian/6.8.2-1
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); |