summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2018-03-18 10:01:37 +0100
committerMichael Albinus <michael.albinus@gmx.de>2018-03-18 10:01:37 +0100
commit9942734c75c7b78efba41204432533cd3fe3b419 (patch)
tree49e21beb61febd2328b25fe07a1cfb1111177ab2 /lisp/emacs-lisp
parentbcc146a66867f1106f405f7f0dc1f1e02810a992 (diff)
downloademacs-9942734c75c7b78efba41204432533cd3fe3b419.tar.gz
emacs-9942734c75c7b78efba41204432533cd3fe3b419.tar.bz2
emacs-9942734c75c7b78efba41204432533cd3fe3b419.zip
* lisp/emacs-lisp/ert.el (ert-run-tests-batch): Print selector.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/ert.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el
index e4e166ac678..09cf28e38ba 100644
--- a/lisp/emacs-lisp/ert.el
+++ b/lisp/emacs-lisp/ert.el
@@ -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))