]> granicus.if.org Git - onig/commitdiff
follow spec. change of (*COUNT)
authorK.Kosako <kosako@sofnec.co.jp>
Thu, 8 Mar 2018 03:23:20 +0000 (12:23 +0900)
committerK.Kosako <kosako@sofnec.co.jp>
Thu, 8 Mar 2018 03:23:20 +0000 (12:23 +0900)
sample/count.c

index 272d64a28881c77cf2d3a3f5efe4b3f8ceb098f9..20a21f7cc8843a21efb8883b7836f1afb1d0300d 100644 (file)
@@ -110,9 +110,9 @@ extern int main(int argc, char* argv[])
   test(encs[0], mp, "abc(.(*COUNT[x]))*(*FAIL)", "abcdefg");
   test(encs[0], mp, "abc(.(*COUNT[_any_]))*(.(*COUNT[x]))*d", "abcdefg");
   /* fail count */
-  test(encs[0], mp, "abc(.(*COUNT[x]{-}))*f", "abcdefg");
+  test(encs[0], mp, "abc(.(*COUNT[x]{<}))*f", "abcdefg");
   /* success count */
-  test(encs[0], mp, "abc(.(*COUNT[x]{+}))*f", "abcdefg");
+  test(encs[0], mp, "abc(.(*COUNT[x]{X}))*f", "abcdefg");
   /* passed count */
   test(encs[0], mp, "abc(.(*COUNT[x]))*f", "abcdefg");
   test(encs[0], mp, "a(.(*COUNT[x]))*z", "abcd\nabcdz");