From a8fc4f7dcae84757b61a2189faad7659e875e42f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Wed, 19 Aug 2020 13:39:18 +0200 Subject: [PATCH] Make bytecomp-tests re-runnable * test/lisp/emacs-lisp/bytecomp-tests.el (test-byte-comp-macro-expand-lexical-override): Remove functions before testing so that the test can be run twice without failing. --- test/lisp/emacs-lisp/bytecomp-tests.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/lisp/emacs-lisp/bytecomp-tests.el b/test/lisp/emacs-lisp/bytecomp-tests.el index 894914300ae..27acdffa532 100644 --- a/test/lisp/emacs-lisp/bytecomp-tests.el +++ b/test/lisp/emacs-lisp/bytecomp-tests.el @@ -479,6 +479,8 @@ Subtests signal errors if something goes wrong." (ert-deftest bytecomp-tests--warnings () (with-current-buffer (get-buffer-create "*Compile-Log*") (let ((inhibit-read-only t)) (erase-buffer))) + (dolist (f '(my-test0 my--test11 my--test12 my--test2)) + (fset f nil)) (test-byte-comp-compile-and-load t '(progn (defun my-test0 () -- 2.39.5