]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix elc.gz loading test some more
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 23 Apr 2022 16:37:27 +0000 (18:37 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 23 Apr 2022 16:37:27 +0000 (18:37 +0200)
test/lisp/files-tests.el

index 1633f3b34cfc72dd5e74e5003d590e012107a6b5..7d17fbde67294512e487ce067cd05e80e2e6594b 100644 (file)
@@ -1844,6 +1844,7 @@ Prompt users for any modified buffer with `buffer-offer-save' non-nil."
       (should (documentation 'zot))
 
       (byte-compile-file el)
+      (fmakunbound 'foo)
       (should (load (concat pref ".elc") t))
       (should (fboundp 'foo))
       (should (documentation 'foo))
@@ -1851,6 +1852,7 @@ Prompt users for any modified buffer with `buffer-offer-save' non-nil."
       (should (documentation 'zot))
 
       (dired-compress-file (concat pref ".elc"))
+      (fmakunbound 'foo)
       (should (load (concat pref ".elc.gz") t))
       (should (fboundp 'foo))
       ;; This fails due to bug#12598.