44 lines
1.5 KiB
EmacsLisp
44 lines
1.5 KiB
EmacsLisp
;;; dvc-tests-utils.el --- Utilities for automated regression tests
|
|
|
|
;; Copyright (C) 2007 Stephen Leake
|
|
|
|
;; Author: Stephen Leake
|
|
|
|
;; This file is free software; you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation; either version 2 of the License, or
|
|
;; (at your option) any later version.
|
|
;;
|
|
;; This file is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this file; see the file COPYING. If not, write to
|
|
;; the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
;; Boston, MA 02110-1301 USA.
|
|
|
|
(eval-and-compile
|
|
(require 'cl))
|
|
|
|
(defun dvc-tests-wait-async ()
|
|
"Waits for all asynchronous dvc processes to terminate."
|
|
(let* ((delay 0.2)
|
|
(seconds-before-message 2)
|
|
(iterations-before-message (/ seconds-before-message delay))
|
|
(iterations 0))
|
|
(while dvc-process-running
|
|
(when (>= iterations iterations-before-message)
|
|
(setq iterations 0)
|
|
(message "Waiting for processes: %S"
|
|
(mapcar (lambda (entry)
|
|
(dvc-event-command (second entry)))
|
|
dvc-process-running)))
|
|
(incf iterations-before-message)
|
|
(sit-for delay))))
|
|
|
|
(provide 'dvc-tests-utils)
|
|
|
|
;; end of file
|