diff options
| author | Mattias EngdegÄrd | 2020-01-20 14:27:38 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2020-01-20 14:27:38 +0100 |
| commit | 891f7de8ed1615b830e27922b3d85be53a652a60 (patch) | |
| tree | cc9328bb1e06233c28c255bde366c8d0d85f4f75 | |
| parent | 92f30d62c038affa515989ad3ccf170b604c9174 (diff) | |
| download | emacs-891f7de8ed1615b830e27922b3d85be53a652a60.tar.gz emacs-891f7de8ed1615b830e27922b3d85be53a652a60.zip | |
* test/lisp/simple-tests.el: Full path to Emacs binary (bug#39067).
| -rw-r--r-- | test/lisp/simple-tests.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lisp/simple-tests.el b/test/lisp/simple-tests.el index 8ef3c885b96..276df795fca 100644 --- a/test/lisp/simple-tests.el +++ b/test/lisp/simple-tests.el | |||
| @@ -723,7 +723,9 @@ See Bug#21722." | |||
| 723 | `(let* ((,caller-buf (generate-new-buffer "caller-buf")) | 723 | `(let* ((,caller-buf (generate-new-buffer "caller-buf")) |
| 724 | (,output-buf (if ,output-buffer-is-current ,caller-buf | 724 | (,output-buf (if ,output-buffer-is-current ,caller-buf |
| 725 | (generate-new-buffer "output-buf"))) | 725 | (generate-new-buffer "output-buf"))) |
| 726 | (,command (format "%s -Q --batch --eval '(princ \"%s\")'" invocation-name ,str)) | 726 | (emacs (expand-file-name invocation-name invocation-directory)) |
| 727 | (,command (format "%s -Q --batch --eval '(princ \"%s\")'" | ||
| 728 | emacs ,str)) | ||
| 727 | (inhibit-message t)) | 729 | (inhibit-message t)) |
| 728 | (unwind-protect | 730 | (unwind-protect |
| 729 | ;; Feature must work the same regardless how we specify the 2nd arg of `shell-command', ie, | 731 | ;; Feature must work the same regardless how we specify the 2nd arg of `shell-command', ie, |