From: Mattias EngdegÄrd Date: Wed, 27 Sep 2023 10:41:15 +0000 (+0200) Subject: ; * test/src/regex-emacs-tests.el: suppress relint complaints X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9a67540e51edca00b17de639af18989f9ecc9be9;p=emacs.git ; * test/src/regex-emacs-tests.el: suppress relint complaints --- diff --git a/test/src/regex-emacs-tests.el b/test/src/regex-emacs-tests.el index c84998e1184..d78f70ba409 100644 --- a/test/src/regex-emacs-tests.el +++ b/test/src/regex-emacs-tests.el @@ -884,13 +884,21 @@ This evaluates the TESTS test cases from glibc." (should (looking-at "x*\\(=\\|:\\)")) (should (looking-at "x*\\(=\\|:\\)*")) (should (looking-at "x*=*?")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*\\|h\\)*?")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*\\|h\\)*")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*?\\|h\\)*")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*?\\|h\\)*?")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*\\|h\\)+?")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*\\|h\\)+")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*?\\|h\\)+")) + ;; relint suppression: Repetition of expression matching an empty string (should (looking-at "x*\\(=*?\\|h\\)+?")) (should (looking-at "x*\\(=+\\|h\\)+?")) (should (looking-at "x*\\(=+\\|h\\)+"))