From: Andrea Corallo Date: Sun, 16 Aug 2020 18:44:56 +0000 (+0200) Subject: * test/src/comp-tests.el (comp-tests-bootstrap): Fix test for new eln setup. X-Git-Tag: emacs-28.0.90~2727^2~486 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=114b1d8f905edfeb7bd81b6a69c707336c01cde0;p=emacs.git * test/src/comp-tests.el (comp-tests-bootstrap): Fix test for new eln setup. --- diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el index 092504565a6..33b307b1c6e 100644 --- a/test/src/comp-tests.el +++ b/test/src/comp-tests.el @@ -54,7 +54,8 @@ Check that the resulting binaries do not differ." (comp-debug 0)) (copy-file comp-src comp1-src t) (copy-file comp-src comp2-src t) - (load (concat comp-src "c") nil nil t t) + (let ((load-no-native t)) + (load (concat comp-src "c") nil nil t t)) (should-not (subr-native-elisp-p (symbol-function #'native-compile))) (message "Compiling stage1...") (let ((comp1-eln (native-compile comp1-src)))