emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master b05702d: Increase timeout on emba for Tramp


From: Michael Albinus
Subject: [Emacs-diffs] master b05702d: Increase timeout on emba for Tramp
Date: Mon, 18 Feb 2019 04:54:53 -0500 (EST)

branch: master
commit b05702d7eb803dbf536e4b589bb80838150559a3
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>

    Increase timeout on emba for Tramp
    
    * test/lisp/net/tramp-tests.el
    (tramp--test-shell-command-to-string-asynchronously):
    Increase timeout on emba.
---
 test/lisp/net/tramp-tests.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index dccef81..3eb424c 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -4113,7 +4113,8 @@ This tests also `make-symbolic-link', `file-truename' and 
`add-name-to-file'."
   "Like `shell-command-to-string', but for asynchronous processes."
   (with-temp-buffer
     (async-shell-command command (current-buffer))
-    (with-timeout (10 (tramp--test-timeout-handler))
+    (with-timeout
+        ((if (getenv "EMACS_EMBA_CI") 30 10) (tramp--test-timeout-handler))
       (while (accept-process-output
              (get-buffer-process (current-buffer)) nil nil t)))
     (buffer-substring-no-properties (point-min) (point-max))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]