summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2021-07-24 17:11:21 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2021-07-24 19:30:39 +0200
commit03f844249cb15a8380d09041a537803c933a2769 (patch)
tree6b626eb50a307579ebe1b671efa1a7c7e23307a7 /test
parente3155440dc36e02b3704ca7f9e4cf8728a2e2131 (diff)
downloademacs-03f844249cb15a8380d09041a537803c933a2769.tar.gz
emacs-03f844249cb15a8380d09041a537803c933a2769.tar.bz2
emacs-03f844249cb15a8380d09041a537803c933a2769.zip
Disable delay and ding in replace-tests
* test/lisp/replace-tests.el (replace-tests-with-undo): When testing the "U" (undo all changes) option, the code will delay and ding which is obnoxious in an automated test. Disabling that makes the test quiet and about 150 times faster.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/replace-tests.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/lisp/replace-tests.el b/test/lisp/replace-tests.el
index 6d004e657d0..417946c35fe 100644
--- a/test/lisp/replace-tests.el
+++ b/test/lisp/replace-tests.el
@@ -465,7 +465,12 @@ Return the last evalled form in BODY."
;; isearch-lazy-highlight-new-loop and sit-for (bug#36328)
((symbol-function 'replace-highlight)
(lambda (&rest _args)
- (string-match "[A-Z ]" "ForestGreen"))))
+ (string-match "[A-Z ]" "ForestGreen")))
+ ;; Override `sit-for' and `ding' so that we don't have
+ ;; to wait and listen to bells when running the test.
+ ((symbol-function 'sit-for)
+ (lambda (&rest _args) (redisplay)))
+ ((symbol-function 'ding) 'ignore))
(perform-replace ,from ,to t replace-tests-perform-replace-regexp-flag nil))
,@body))))