branch: elpa/forth-mode
commit f531a1bcd7c05ff400c188c223571ca663a01e91
Author: Lars Brinkhoff <[email protected]>
Commit: Lars Brinkhoff <[email protected]>
Print test name in ERT shim.
---
build.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.el b/build.el
index c5d78455c2..ac97befdd8 100644
--- a/build.el
+++ b/build.el
@@ -9,7 +9,7 @@
(if (locate-library "ert")
(require 'ert)
(defmacro ert-deftest (name args &rest body)
- `(progn ,@body))
+ `(progn (message "Testing: %s" ',name) ,@body))
(defun ert-run-tests-batch-and-exit (&optional x)
(kill-emacs 0))
(defun should (arg)