diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2018-03-18 10:01:37 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2018-03-18 10:01:37 +0100 |
commit | 9942734c75c7b78efba41204432533cd3fe3b419 (patch) | |
tree | 49e21beb61febd2328b25fe07a1cfb1111177ab2 /lisp/emacs-lisp | |
parent | bcc146a66867f1106f405f7f0dc1f1e02810a992 (diff) | |
download | emacs-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.el | 5 |
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)) |