From 9a67540e51edca00b17de639af18989f9ecc9be9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Wed, 27 Sep 2023 12:41:15 +0200 Subject: [PATCH] ; * test/src/regex-emacs-tests.el: suppress relint complaints --- test/src/regex-emacs-tests.el | 8 ++++++++ 1 file changed, 8 insertions(+) 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\\)+")) -- 2.39.5