diff options
| author | Michael Albinus | 2018-03-18 10:01:37 +0100 |
|---|---|---|
| committer | Michael Albinus | 2018-03-18 10:01:37 +0100 |
| commit | 9942734c75c7b78efba41204432533cd3fe3b419 (patch) | |
| tree | 49e21beb61febd2328b25fe07a1cfb1111177ab2 | |
| parent | bcc146a66867f1106f405f7f0dc1f1e02810a992 (diff) | |
| download | emacs-9942734c75c7b78efba41204432533cd3fe3b419.tar.gz emacs-9942734c75c7b78efba41204432533cd3fe3b419.zip | |
* lisp/emacs-lisp/ert.el (ert-run-tests-batch): Print selector.
| -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." | |||
| 1360 | (run-started | 1360 | (run-started |
| 1361 | (unless ert-quiet | 1361 | (unless ert-quiet |
| 1362 | (cl-destructuring-bind (stats) event-args | 1362 | (cl-destructuring-bind (stats) event-args |
| 1363 | (message "Running %s tests (%s)" | 1363 | (message "Running %s tests (%s, selector `%S')" |
| 1364 | (length (ert--stats-tests stats)) | 1364 | (length (ert--stats-tests stats)) |
| 1365 | (ert--format-time-iso8601 (ert--stats-start-time stats)))))) | 1365 | (ert--format-time-iso8601 (ert--stats-start-time stats)) |
| 1366 | selector)))) | ||
| 1366 | (run-ended | 1367 | (run-ended |
| 1367 | (cl-destructuring-bind (stats abortedp) event-args | 1368 | (cl-destructuring-bind (stats abortedp) event-args |
| 1368 | (let ((unexpected (ert-stats-completed-unexpected stats)) | 1369 | (let ((unexpected (ert-stats-completed-unexpected stats)) |