summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2019-02-18 10:54:45 +0100
committerMichael Albinus <michael.albinus@gmx.de>2019-02-18 10:54:45 +0100
commitb05702d7eb803dbf536e4b589bb80838150559a3 (patch)
tree1a8dd2aeddc648ddef42b532a75c9748a26ef64f
parent287dd6baa38f12de4995e5571ec75af83b3f56d8 (diff)
downloademacs-b05702d7eb803dbf536e4b589bb80838150559a3.tar.gz
Increase timeout on emba for Tramp
* test/lisp/net/tramp-tests.el (tramp--test-shell-command-to-string-asynchronously): Increase timeout on emba.
-rw-r--r--test/lisp/net/tramp-tests.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index dccef81b7b5..3eb424c62dc 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))))