diff --git a/test/cmark-test.el b/test/cmark-test.el index 3c44f5d..9810856 100644 --- a/test/cmark-test.el +++ b/test/cmark-test.el @@ -361,6 +361,18 @@ Otherwise, MESSAGE is appended to the ERROR-BUFFER." cases) (setq x (* 10 x)))) + (let ((x 1000)) + (while (<= x 10000) + (push + (make-cmark--pathologicalTest + :name (concat + (number-to-string x) + " openers and closers multiple of 3") + :input (concat "a**b" (cmark--repeat "c* " x)) + :expected (concat "

a**b" (cmark--repeat "c* " (1- x)) "c*

\n")) + cases) + (setq x (* 10 x)))) + (let ((x 1000)) (while (<= x 10000) (push