aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorMattias EngdegÄrd2023-02-16 10:03:30 +0100
committerMattias EngdegÄrd2023-02-16 10:09:25 +0100
commit07a76a06f9a438e2a1bf1e565e3e78f7927c37f2 (patch)
treedfbca40e233b28f84cdfd849331bb269f61afa42 /test/src
parent314f12630af4d085d0c07283f110ad15b07bde14 (diff)
downloademacs-07a76a06f9a438e2a1bf1e565e3e78f7927c37f2.tar.gz
emacs-07a76a06f9a438e2a1bf1e565e3e78f7927c37f2.zip
Fix test errors when run with fancy charset (bug#61534)
* test/lisp/emacs-lisp/bytecomp-tests.el (bytecomp-tests--unescaped-char-literals, test-suppression): Bind `text-quoting-style` to `grave` around tests to force generation of ASCII quotes. * test/src/lread-tests.el (lread-tests--unescaped-char-literals): Subject the reference string to the same text styling as that under scrutiny.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/lread-tests.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/src/lread-tests.el b/test/src/lread-tests.el
index 459a06a39b6..c0ea37d2c55 100644
--- a/test/src/lread-tests.el
+++ b/test/src/lread-tests.el
@@ -137,11 +137,13 @@ literals (Bug#20852)."
137 (write-region "?) ?( ?; ?\" ?[ ?]" nil file-name) 137 (write-region "?) ?( ?; ?\" ?[ ?]" nil file-name)
138 (should (equal (load file-name nil :nomessage :nosuffix) t)) 138 (should (equal (load file-name nil :nomessage :nosuffix) t))
139 (should (equal (lread-tests--last-message) 139 (should (equal (lread-tests--last-message)
140 (concat (format-message "Loading `%s': " file-name) 140 (format-message
141 "unescaped character literals " 141 (concat "Loading `%s': "
142 "`?\"', `?(', `?)', `?;', `?[', `?]' detected, " 142 "unescaped character literals "
143 "`?\\\"', `?\\(', `?\\)', `?\\;', `?\\[', `?\\]' " 143 "`?\"', `?(', `?)', `?;', `?[', `?]' detected, "
144 "expected!"))))) 144 "`?\\\"', `?\\(', `?\\)', `?\\;', `?\\[', `?\\]' "
145 "expected!")
146 file-name)))))
145 147
146(ert-deftest lread-test-bug26837 () 148(ert-deftest lread-test-bug26837 ()
147 "Test for https://debbugs.gnu.org/26837 ." 149 "Test for https://debbugs.gnu.org/26837 ."