aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorStefan Monnier2023-09-05 10:54:25 -0400
committerStefan Monnier2023-09-05 10:54:25 -0400
commit80bdcf8f351f35f1eb73a016f7e58188be0425d4 (patch)
treeadf8566dec4aa553c0e0aac3eb1605ae258499c8 /test/src
parent8a9e653cc82e85c2d3505d9f5511ed0484ea4ff1 (diff)
downloademacs-80bdcf8f351f35f1eb73a016f7e58188be0425d4.tar.gz
emacs-80bdcf8f351f35f1eb73a016f7e58188be0425d4.zip
(regexp-tests-backtrack-optimization): Mark it as failing
* test/src/regex-emacs-tests.el (regexp-tests-backtrack-optimization): The fix for bug#65726 broke some of the optimization added for bug#61514.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/regex-emacs-tests.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/src/regex-emacs-tests.el b/test/src/regex-emacs-tests.el
index c074100e17f..195b3c9f8c0 100644
--- a/test/src/regex-emacs-tests.el
+++ b/test/src/regex-emacs-tests.el
@@ -873,6 +873,7 @@ This evaluates the TESTS test cases from glibc."
873 (should (equal (string-match "\\`a\\{2\\}*\\'" "a") nil))) 873 (should (equal (string-match "\\`a\\{2\\}*\\'" "a") nil)))
874 874
875(ert-deftest regexp-tests-backtrack-optimization () ;bug#61514 875(ert-deftest regexp-tests-backtrack-optimization () ;bug#61514
876 :expected-result :failed
876 ;; Make sure we don't use up the regexp stack needlessly. 877 ;; Make sure we don't use up the regexp stack needlessly.
877 (with-current-buffer (get-buffer-create "*bug*") 878 (with-current-buffer (get-buffer-create "*bug*")
878 (erase-buffer) 879 (erase-buffer)