diff options
author | Po Lu <luangruo@yahoo.com> | 2025-02-25 19:12:37 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2025-02-25 19:13:24 +0800 |
commit | 7da9d2d7464496ff684d28b0d37f286ddae70d65 (patch) | |
tree | 35d5c95c1275132e02a2b6f7ca84c23a8f5a7ffd /test/lib-src/emacsclient-tests.el | |
parent | 93a185a1fb874ebbcfdac257b50a3d0700a93fb5 (diff) | |
download | emacs-7da9d2d7464496ff684d28b0d37f286ddae70d65.tar.gz emacs-7da9d2d7464496ff684d28b0d37f286ddae70d65.tar.bz2 emacs-7da9d2d7464496ff684d28b0d37f286ddae70d65.zip |
Fix a number of ERT tests for execution on Android
* test/lib-src/emacsclient-tests.el (emacsclient-test-emacs):
* test/lisp/server-tests.el (server-tests/emacsclient): Don't
assume emacsclient is installed as emacsclient.
Diffstat (limited to 'test/lib-src/emacsclient-tests.el')
-rw-r--r-- | test/lib-src/emacsclient-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib-src/emacsclient-tests.el b/test/lib-src/emacsclient-tests.el index 54dd41c5a69..d65f79876db 100644 --- a/test/lib-src/emacsclient-tests.el +++ b/test/lib-src/emacsclient-tests.el @@ -30,7 +30,7 @@ (defconst emacsclient-test-emacs (if installation-directory (expand-file-name "lib-src/emacsclient" installation-directory) - "emacsclient") + emacsclient-program-name) "The emacsclient binary to test.") (defmacro emacsclient-test-call-emacsclient (editor) |