Skip recent undo tests in batch mode for now
* test/lisp/simple-tests.el (simple-tests--undo-in-region): Split into separate test. Skip in batch mode for now. (simple-tests--undo-equiv-table): Skip in batch mode for now.
This commit is contained in:
parent
d1a7d16f8e
commit
f7b7ecc4df
1 changed files with 5 additions and 1 deletions
|
@ -465,8 +465,11 @@ See bug#35036."
|
|||
(simple-tests--exec '(backward-char undo-redo undo-redo))
|
||||
(should (equal (buffer-string) "abc"))
|
||||
(simple-tests--exec '(backward-char undo-redo undo-redo))
|
||||
(should (equal (buffer-string) "abcde")))
|
||||
(should (equal (buffer-string) "abcde"))))
|
||||
|
||||
(ert-deftest simple-tests--undo-in-region ()
|
||||
;; Test undo/redo in region.
|
||||
(skip-unless (not noninteractive))
|
||||
(with-temp-buffer
|
||||
(buffer-enable-undo)
|
||||
(dolist (x '("a" "b" "c" "d" "e"))
|
||||
|
@ -503,6 +506,7 @@ See bug#35036."
|
|||
lst)
|
||||
|
||||
(ert-deftest simple-tests--undo-equiv-table ()
|
||||
(skip-unless (not noninteractive))
|
||||
(with-temp-buffer
|
||||
(buffer-enable-undo)
|
||||
(let ((ul-hash-table (make-hash-table :test #'equal)))
|
||||
|
|
Loading…
Add table
Reference in a new issue