* lisp/emacs-lisp/ert.el (ert-run-tests-batch): Print selector.

This commit is contained in:
Michael Albinus 2018-03-18 10:01:37 +01:00
parent bcc146a668
commit 9942734c75

View file

@ -1360,9 +1360,10 @@ Returns the stats object."
(run-started
(unless ert-quiet
(cl-destructuring-bind (stats) event-args
(message "Running %s tests (%s)"
(message "Running %s tests (%s, selector `%S')"
(length (ert--stats-tests stats))
(ert--format-time-iso8601 (ert--stats-start-time stats))))))
(ert--format-time-iso8601 (ert--stats-start-time stats))
selector))))
(run-ended
(cl-destructuring-bind (stats abortedp) event-args
(let ((unexpected (ert-stats-completed-unexpected stats))