aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorGlenn Morris2019-11-09 19:38:05 -0800
committerGlenn Morris2019-11-09 19:38:05 -0800
commit2f36a0821491f25fb52d4f3c6f4a7aebb923225f (patch)
tree31879ae19c7f857d80a8d8810b43904cc98325e3 /test/src
parent732e9427987bea61d66def9b46f90614d6a11dbd (diff)
downloademacs-2f36a0821491f25fb52d4f3c6f4a7aebb923225f.tar.gz
emacs-2f36a0821491f25fb52d4f3c6f4a7aebb923225f.zip
Disable a portion of one doc-test
* test/src/doc-tests.el (doc-test-substitute-command-keys): Disable component that fails twice in the past 5 weeks due to changes in the minibuffer map.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/doc-tests.el63
1 files changed, 33 insertions, 30 deletions
diff --git a/test/src/doc-tests.el b/test/src/doc-tests.el
index 4cfc5a5d573..705675a5c8f 100644
--- a/test/src/doc-tests.el
+++ b/test/src/doc-tests.el
@@ -35,36 +35,39 @@
35 (should (string= (substitute-command-keys "foo \\=\\=") 35 (should (string= (substitute-command-keys "foo \\=\\=")
36 "foo \\=")) 36 "foo \\="))
37 ;; Keymaps. 37 ;; Keymaps.
38 (should (string= (substitute-command-keys 38 ;; I don't see that this is testing anything useful.
39 "\\{minibuffer-local-must-match-map}") 39 ;; AFAICS all it does it fail whenever someone modifies the
40 "\ 40 ;; minibuffer map.
41key binding 41;;; (should (string= (substitute-command-keys
42--- ------- 42;;; "\\{minibuffer-local-must-match-map}")
43 43;;; "\
44C-g abort-recursive-edit 44;;; key binding
45TAB minibuffer-complete 45;;; --- -------
46C-j minibuffer-complete-and-exit 46;;;
47RET minibuffer-complete-and-exit 47;;; C-g abort-recursive-edit
48ESC Prefix Command 48;;; TAB minibuffer-complete
49SPC minibuffer-complete-word 49;;; C-j minibuffer-complete-and-exit
50? minibuffer-completion-help 50;;; RET minibuffer-complete-and-exit
51<C-tab> file-cache-minibuffer-complete 51;;; ESC Prefix Command
52<XF86Back> previous-history-element 52;;; SPC minibuffer-complete-word
53<XF86Forward> next-history-element 53;;; ? minibuffer-completion-help
54<down> next-line-or-history-element 54;;; <C-tab> file-cache-minibuffer-complete
55<next> next-history-element 55;;; <XF86Back> previous-history-element
56<prior> switch-to-completions 56;;; <XF86Forward> next-history-element
57<up> previous-line-or-history-element 57;;; <down> next-line-or-history-element
58 58;;; <next> next-history-element
59M-v switch-to-completions 59;;; <prior> switch-to-completions
60 60;;; <up> previous-line-or-history-element
61M-< minibuffer-beginning-of-buffer 61;;;
62M-n next-history-element 62;;; M-v switch-to-completions
63M-p previous-history-element 63;;;
64M-r previous-matching-history-element 64;;; M-< minibuffer-beginning-of-buffer
65M-s next-matching-history-element 65;;; M-n next-history-element
66 66;;; M-p previous-history-element
67")) 67;;; M-r previous-matching-history-element
68;;; M-s next-matching-history-element
69;;;
70;;; "))
68 (should (string= 71 (should (string=
69 (substitute-command-keys 72 (substitute-command-keys
70 "\\<minibuffer-local-must-match-map>\\[abort-recursive-edit]") 73 "\\<minibuffer-local-must-match-map>\\[abort-recursive-edit]")