GNU bug report logs -
#36940
tests slowness and failure after recent Tramp changes
Previous Next
Reported by: Paul Eggert <eggert <at> cs.ucla.edu>
Date: Tue, 6 Aug 2019 00:29:02 UTC
Severity: normal
Done: Paul Eggert <eggert <at> cs.ucla.edu>
Bug is archived. No further changes may be made.
Full log
Message #136 received at 36940 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Stefan Kangas <stefan <at> marxist.se> writes:
> Sorry, it's still failing. I've attached the log.
Let's try this one. If it also fails, I will disable this part of the
test for macOS. Tramp works correctly, and the check is a minor one only.
[Message part 2 (text/x-patch, inline)]
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index 9930a2c9e1..3d5949b033 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -5288,18 +5288,26 @@ tramp--test-check-files
(setenv "PS1")
(with-temp-buffer
(should (zerop (process-file "env" nil t nil)))
- (goto-char (point-min))
- (should
- (re-search-forward
- ;; We must use proper encoding on macOS. See
- ;; Bug#36940.
- (funcall
- (if (eq coding-system-for-read 'utf-8-hfs)
- 'ucs-normalize-HFS-NFD-string 'identity)
- (format
- "^%s=%s$"
- (regexp-quote envvar)
- (regexp-quote (getenv envvar)))))))))))
+ (tramp--test-message
+ "coding-sytem: `%s' `%s'"
+ coding-system-for-read coding-system-for-write )
+ (tramp--test-message "search: `%s'" (getenv envvar))
+ ;; We must use proper encoding on macOS. See
+ ;; Bug#36940.
+ (let ((system-type 'gnu/linux)
+ (coding-system-for-read 'no-conversion)
+ (coding-system-for-write 'no-conversion))
+ (tramp--test-message
+ "search: `%s'"
+ (ucs-normalize-HFS-NFD-string (getenv envvar)))
+ (tramp--test-message "buffer: `%s'" (buffer-string))
+ (goto-char (point-min))
+ (should
+ (re-search-forward
+ (format
+ "^%s=%s$"
+ (regexp-quote envvar)
+ (regexp-quote (getenv envvar)))))))))))
;; Cleanup.
(ignore-errors (delete-directory tmp-name1 'recursive))
[Message part 3 (text/plain, inline)]
> Best regards,
> Stefan Kangas
Best regards, Michael.
This bug report was last modified 5 years and 326 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.