Skip to content

Commit 0eb47c2

Browse files
committed
; Remove instrumentation in tramp-tests
1 parent 5c5e309 commit 0eb47c2

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

test/lisp/net/tramp-tests.el

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4085,15 +4085,11 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
40854085
(defun tramp--test-shell-command-to-string-asynchronously (command)
40864086
"Like `shell-command-to-string', but for asynchronous processes."
40874087
(with-temp-buffer
4088-
(unwind-protect
4089-
(async-shell-command command (current-buffer))
4090-
(with-timeout
4091-
((if (getenv "EMACS_EMBA_CI") 30 10) (tramp--test-timeout-handler))
4092-
(while (accept-process-output
4093-
(get-buffer-process (current-buffer)) nil nil t)))
4094-
(tramp--test-message
4095-
"# %s\n%s"
4096-
command (buffer-substring-no-properties (point-min) (point-max))))
4088+
(async-shell-command command (current-buffer))
4089+
(with-timeout
4090+
((if (getenv "EMACS_EMBA_CI") 30 10) (tramp--test-timeout-handler))
4091+
(while (accept-process-output
4092+
(get-buffer-process (current-buffer)) nil nil t)))
40974093
(buffer-substring-no-properties (point-min) (point-max))))
40984094

40994095
(ert-deftest tramp-test32-shell-command ()

0 commit comments

Comments
 (0)