aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorAndrea Corallo2020-12-12 16:26:17 +0100
committerAndrea Corallo2020-12-12 16:30:07 +0100
commitc39fad909cf9720626d310618cfdeae2ccf330ba (patch)
tree1ba02572be9f966c895e05af8aafe6578c67cfcb /test/src
parent0474fda62d79cb7eb250f34f19773c87f283c665 (diff)
downloademacs-c39fad909cf9720626d310618cfdeae2ccf330ba.tar.gz
emacs-c39fad909cf9720626d310618cfdeae2ccf330ba.zip
* test/src/comp-tests.el (comp-tests-bootstrap): Temp fix bootstrap test.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-tests.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index c2af52e4cab..e73fc652d62 100644
--- a/test/src/comp-tests.el
+++ b/test/src/comp-tests.el
@@ -56,8 +56,9 @@
56 "Compile the compiler and load it to compile it-self. 56 "Compile the compiler and load it to compile it-self.
57Check that the resulting binaries do not differ." 57Check that the resulting binaries do not differ."
58 :tags '(:expensive-test :nativecomp) 58 :tags '(:expensive-test :nativecomp)
59 (let* ((comp-src (concat comp-test-directory 59 (let* ((byte-native-for-bootstrap t) ; FIXME HACK
60 "../../lisp/emacs-lisp/comp.el")) 60 (comp-src (concat comp-test-directory
61 "../../lisp/emacs-lisp/comp.el"))
61 (comp1-src (make-temp-file "stage1-" nil ".el")) 62 (comp1-src (make-temp-file "stage1-" nil ".el"))
62 (comp2-src (make-temp-file "stage2-" nil ".el")) 63 (comp2-src (make-temp-file "stage2-" nil ".el"))
63 ;; Can't use debug symbols. 64 ;; Can't use debug symbols.