1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 07:11:34 -08:00

Use utf-8-hfs-unix on macOS (Bug#29712)

This is a quick fix for the Emacs 26 release. Do not merge to master.

* test/src/fileio-tests.el (fileio-tests--symlink-failure): Override
file-name-coding-system to utf-8-hfs-unix to prevent test failure.
This commit is contained in:
Alan Third 2017-12-16 17:13:34 +00:00
parent 28e0261890
commit 080f227331

View file

@ -29,7 +29,8 @@
(defun fileio-tests--symlink-failure ()
(let* ((dir (make-temp-file "fileio" t))
(link (expand-file-name "link" dir)))
(link (expand-file-name "link" dir))
(file-name-coding-system 'utf-8-hfs-unix))
(unwind-protect
(let (failure
(char 0))