[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
scratch/native-comp-eln-caches df1c314 2/2: * test/src/comp-tests.el (co
From: |
Andrea Corallo |
Subject: |
scratch/native-comp-eln-caches df1c314 2/2: * test/src/comp-tests.el (comp-tests-bootstrap): Fix test for new eln setup. |
Date: |
Sun, 16 Aug 2020 15:36:51 -0400 (EDT) |
branch: scratch/native-comp-eln-caches
commit df1c314365612878d6cd7f08c8916970cfa6db98
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>
* test/src/comp-tests.el (comp-tests-bootstrap): Fix test for new eln setup.
---
test/src/comp-tests.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index 0925045..33b307b 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)))