[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 4383ff8: ; Instrument tramp-tests.el
From: |
Michael Albinus |
Subject: |
[Emacs-diffs] master 4383ff8: ; Instrument tramp-tests.el |
Date: |
Sun, 2 Jul 2017 06:16:40 -0400 (EDT) |
branch: master
commit 4383ff87a124bfbb5ef07751c12d42a743fccdc5
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>
; Instrument tramp-tests.el
---
test/lisp/net/tramp-tests.el | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index 10d52f3..85990a8 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -3700,7 +3700,11 @@ process sentinels. They shall not disturb each other."
;; Suppress nasty messages.
(inhibit-message t)
(number-proc 10)
- (timer-repeat 1)
+ ;; On hydra, timings are bad.
+ (timer-repeat
+ (cond
+ ((getenv "NIX_STORE") 10
+ (t 1))))
;; We must distinguish due to performance reasons.
(timer-operation
(cond
@@ -3725,10 +3729,13 @@ process sentinels. They shall not disturb each other."
(let ((default-directory tmp-name)
(file
(buffer-name (nth (random (length buffers)) buffers))))
- (tramp--test-message "Start timer %s %s" timer-operation
file)
+ (tramp--test-message
+ "Start timer %s %s %s"
+ timer-operation file (current-time-string))
(funcall timer-operation file)
(tramp--test-message
- "Stop timer %s %s" timer-operation file))))))
+ "Stop timer %s %s %s"
+ timer-operation file (current-time-string)))))))
;; Create temporary buffers. The number of buffers
;; corresponds to the number of processes; it could be
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master 4383ff8: ; Instrument tramp-tests.el,
Michael Albinus <=