Function: ert--results-update-stats-display

ert--results-update-stats-display is a byte-compiled function defined in ert.el.gz.

Signature

(ert--results-update-stats-display EWOC STATS)

Documentation

Update EWOC and the mode line to show data from STATS.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert--results-update-stats-display (ewoc stats)
  "Update EWOC and the mode line to show data from STATS."
  ;; TODO(ohler): investigate using `make-progress-reporter'.
  (ert--results-update-ewoc-hf ewoc stats)
  (force-mode-line-update)
  (redisplay t)
  (setf (ert--stats-next-redisplay stats)
	(float-time (time-add nil ert-test-run-redisplay-interval-secs))))