* test/lisp/files-tests.el (files-tests-executable-find): Make the
tmpfile end with one of exec-suffixes, so that it will be executable
on w32.
(ert-deftest files-tests-executable-find ()
"Test that `executable-find' works also with a relative or remote PATH.
See <https://debbugs.gnu.org/35241>."
- (let ((tmpfile (make-temp-file "files-test")))
+ (let ((tmpfile (make-temp-file "files-test" nil (car exec-suffixes))))
(unwind-protect
(progn
(set-file-modes tmpfile #o777)