APPROVE COMMIT
NOTE: This patch has been committed
# HG changeset patch
# User Aidan Kehoe <kehoea(a)parhasard.net>
# Date 1506766865 -3600
# Sat Sep 30 11:21:05 2017 +0100
# Node ID 3cbfc9e40cf7617b4d15b5bc913c3c1dd12e2516
# Parent 553b0328db22a9e8d8aa6159493a344cd730d72a
Update tests/automated/ to reflect some changed design decisions.
2017-09-30 Aidan Kehoe <kehoea(a)parhasard.net>
* automated/extent-tests.el:
Update check for varying-length case transformation to work
following the unicode-internal merge, LATIN CAPITAL LETTER I WITH
DOT ABOVE may be from a distinct charset on old-mule.
* automated/lisp-tests.el:
Really don't check whether #'auto-save-escape-name always creates
a new string, now it doesn't.
diff -r 553b0328db22 -r 3cbfc9e40cf7 tests/ChangeLog
--- a/tests/ChangeLog Sat Sep 30 11:01:37 2017 +0100
+++ b/tests/ChangeLog Sat Sep 30 11:21:05 2017 +0100
@@ -1,3 +1,13 @@
+2017-09-30 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * automated/extent-tests.el:
+ Update check for varying-length case transformation to work
+ following the unicode-internal merge, LATIN CAPITAL LETTER I WITH
+ DOT ABOVE may be from a distinct charset on old-mule.
+ * automated/lisp-tests.el:
+ Really don't check whether #'auto-save-escape-name always creates
+ a new string, now it doesn't.
+
2017-09-24 Aidan Kehoe <kehoea(a)parhasard.net>
* automated/lisp-tests.el:
diff -r 553b0328db22 -r 3cbfc9e40cf7 tests/automated/extent-tests.el
--- a/tests/automated/extent-tests.el Sat Sep 30 11:01:37 2017 +0100
+++ b/tests/automated/extent-tests.el Sat Sep 30 11:21:05 2017 +0100
@@ -669,8 +669,8 @@
"checking extent copied, \"MEINE\"")
(Assert (eql (extent-start-position pE) 0))
(Assert (eql (extent-end-position pE) (length MEINE)))
- (Assert (equal MEINE
- (decode-coding-string "ME\xc4\xb0NE"
'utf-8))))
+ (Assert (equal (encode-coding-string MEINE 'utf-8)
+ "ME\xc4\xb0NE")))
(set-language-environment env))))
(when (featurep 'menubar)
diff -r 553b0328db22 -r 3cbfc9e40cf7 tests/automated/lisp-tests.el
--- a/tests/automated/lisp-tests.el Sat Sep 30 11:01:37 2017 +0100
+++ b/tests/automated/lisp-tests.el Sat Sep 30 11:21:05 2017 +0100
@@ -4234,7 +4234,7 @@
(Assert (equal (auto-save-escape-name "���") "���"))
-(Assert (not (eq (auto-save-escape-name "abcdefghijk")
"abcdefghijk")))
+(Assert (equal (auto-save-escape-name "abcdefghijk") "abcdefghijk"))
(macrolet
((create-individual-char-tests (&rest characters)
--
‘As I sat looking up at the Guinness ad, I could never figure out /
How your man stayed up on the surfboard after forty pints of stout’
(C. Moore)
Show replies by date