]> git.eshelyaron.com Git - emacs.git/commitdiff
* Fix two tests in help-fns-tests.el for native code
authorAndrea Corallo <akrl@sdf.org>
Sat, 3 Oct 2020 18:57:57 +0000 (20:57 +0200)
committerAndrea Corallo <akrl@sdf.org>
Sun, 4 Oct 2020 17:43:42 +0000 (19:43 +0200)
* test/lisp/help-fns-tests.el (help-fns-test-lisp-defun)
(help-fns-test-lisp-defsubst): Fix description string
for native compiled functions.

test/lisp/help-fns-tests.el

index 811b3677910bcd8c00e472655a96ff78d118bab6..2f6abfb56dd1936beecad6df4328079fb0c46841 100644 (file)
@@ -61,12 +61,16 @@ Return first line of the output of (describe-function-1 FUNC)."
     (should (string-match regexp result))))
 
 (ert-deftest help-fns-test-lisp-defun ()
-  (let ((regexp "a compiled Lisp function in .subr\\.el")
+  (let ((regexp (if (boundp 'comp-ctxt)
+                    "a native compiled Lisp function in .subr\\.el"
+                  "a compiled Lisp function in .subr\\.el"))
         (result (help-fns-tests--describe-function 'last)))
     (should (string-match regexp result))))
 
 (ert-deftest help-fns-test-lisp-defsubst ()
-  (let ((regexp "a compiled Lisp function in .subr\\.el")
+  (let ((regexp (if (boundp 'comp-ctxt)
+                    "a native compiled Lisp function in .subr\\.el"
+                  "a compiled Lisp function in .subr\\.el"))
         (result (help-fns-tests--describe-function 'posn-window)))
     (should (string-match regexp result))))