emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115607: * lisp/emacs-lisp/ert.el (ert-select-tests)


From: Glenn Morris
Subject: [Emacs-diffs] trunk r115607: * lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup.
Date: Thu, 19 Dec 2013 08:14:50 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115607
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/16121
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2013-12-19 00:14:37 -0800
message:
  * lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/ert.el         ert.el-20110112160650-056hnl9qhpjvjicy-2
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-12-19 05:06:24 +0000
+++ b/lisp/ChangeLog    2013-12-19 08:14:37 +0000
@@ -1,3 +1,8 @@
+2013-12-19  Glenn Morris  <address@hidden>
+
+       * emacs-lisp/ert.el (ert-select-tests):
+       Fix string/symbol mixup.  (Bug#16121)
+
 2013-12-19  Dmitry Gutov  <address@hidden>
 
        * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block

=== modified file 'lisp/emacs-lisp/ert.el'
--- a/lisp/emacs-lisp/ert.el    2013-11-05 07:44:14 +0000
+++ b/lisp/emacs-lisp/ert.el    2013-12-19 08:14:37 +0000
@@ -999,7 +999,8 @@
        (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]