aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorEli Zaretskii2023-08-12 13:50:38 -0400
committerEli Zaretskii2023-08-12 13:50:38 -0400
commit3fc9793a260feed0deda8b6bdfd3e1c73774181a (patch)
treea0ec5882b60ae1a5deff188971f6ae3586d5d0fa /test/src
parent276bf5369ffa47f994586b932cb6a9dd760ecfeb (diff)
parent842dbf500e0fcf44d686d480f39d067b19ff38a9 (diff)
downloademacs-3fc9793a260feed0deda8b6bdfd3e1c73774181a.tar.gz
emacs-3fc9793a260feed0deda8b6bdfd3e1c73774181a.zip
Merge from origin/emacs-29
842dbf500e0 * Fix `batch-byte+native-compile' target directory. 8dbd5aa1eef Avoid crashes in 'display_count_lines' when current buffe... 47b4f4cf783 ; * doc/emacs/mini.texi (Completion Commands): Fix a typo... 78999d52136 Update csharp tree-sitter support due to upstream changes 556cb01b48e Substitute command keys in 'ielm-header' at use time 99367078e50 ; * etc/PROBLEMS: Add entry about XIM problems (bug#65205). 03e897c08fa Fix rare crashes in redisplay due to problems with fontsets b1ba06a1e4b Fix a typo in 'leuven-dark-theme.el' e80a9dcabb9 ; * admin/git-bisect-start: Update failing commits 9091f42784b ; * admin/git-bisect-start: Update failing commits 344ac529ca9 ; * etc/PROBLEMS: Fix typo. bccf848b26c Adapt Tramp test 71bc060e403 Properly expand the JSX indentation rules in 'js-ts-mode' 889cfb42ed9 * Add `emacs-lisp-native-compile' to easy-menu. 4535aafa8a3 * lisp/progmodes/elisp-mode.el (emacs-lisp-mode-menu): Si... 173af0cad51 * Introduce `emacs-lisp-native-compile'. 063d7d89d7a Fix the -x switch in non-X builds 5a7fb0b39b7 Document that `set-mouse-color' does not work everywhere d06fc72496f ; * doc/emacs/dired.texi (Misc Dired Features): Fix last ... 97b8ac376b5 Fix the effects and documentation of 'dired-free-space' 75c72e59f69 ; Fix typo 6d11b7b3007 Fix cross-reference to eldoc in eglot manual 913e50aba6c Add native-compilation to Emacs Lisp mode menu b93107c20b2 Fix emacs-lisp-native-compile-and-load eln target directo...
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-tests.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index 89b1eefb1dc..2fd70585628 100644
--- a/test/src/comp-tests.el
+++ b/test/src/comp-tests.el
@@ -72,9 +72,11 @@ Check that the resulting binaries do not differ."
72 :suffix "-comp-stage1.el" 72 :suffix "-comp-stage1.el"
73 (ert-with-temp-file comp2-src 73 (ert-with-temp-file comp2-src
74 :suffix "-comp-stage2.el" 74 :suffix "-comp-stage2.el"
75 (let* ((byte+native-compile t) ; FIXME HACK 75 (let* ((byte+native-compile t)
76 (native-compile-target-directory
77 (car (last native-comp-eln-load-path)))
76 (comp-src (expand-file-name "../../../lisp/emacs-lisp/comp.el" 78 (comp-src (expand-file-name "../../../lisp/emacs-lisp/comp.el"
77 (ert-resource-directory))) 79 (ert-resource-directory)))
78 ;; Can't use debug symbols. 80 ;; Can't use debug symbols.
79 (native-comp-debug 0)) 81 (native-comp-debug 0))
80 (copy-file comp-src comp1-src t) 82 (copy-file comp-src comp1-src t)