From: Glenn Morris Date: Thu, 19 Dec 2013 08:14:37 +0000 (-0800) Subject: * lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~329 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=049638ad60ae21c89227148ac7235da3afbf221d;p=emacs.git * lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup. Fixes: debbugs:16121 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5fd4ff56c66..249f629b5f4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-12-19 Glenn Morris + + * emacs-lisp/ert.el (ert-select-tests): + Fix string/symbol mixup. (Bug#16121) + 2013-12-19 Dmitry Gutov * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el index a131f48c488..01b610396a9 100644 --- a/lisp/emacs-lisp/ert.el +++ b/lisp/emacs-lisp/ert.el @@ -999,7 +999,8 @@ contained in UNIVERSE." (list (cl-remove-if-not (lambda (test) (and (ert-test-name test) (string-match selector - (ert-test-name test)))) + (symbol-name + (ert-test-name test))))) universe)))) (ert-test (list selector)) (symbol