aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPo Lu2025-02-25 19:12:37 +0800
committerPo Lu2025-02-25 19:13:24 +0800
commit7da9d2d7464496ff684d28b0d37f286ddae70d65 (patch)
tree35d5c95c1275132e02a2b6f7ca84c23a8f5a7ffd
parent93a185a1fb874ebbcfdac257b50a3d0700a93fb5 (diff)
downloademacs-7da9d2d7464496ff684d28b0d37f286ddae70d65.tar.gz
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.
-rw-r--r--test/lib-src/emacsclient-tests.el2
-rw-r--r--test/lisp/server-tests.el2
2 files changed, 2 insertions, 2 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 @@
30(defconst emacsclient-test-emacs 30(defconst emacsclient-test-emacs
31 (if installation-directory 31 (if installation-directory
32 (expand-file-name "lib-src/emacsclient" installation-directory) 32 (expand-file-name "lib-src/emacsclient" installation-directory)
33 "emacsclient") 33 emacsclient-program-name)
34 "The emacsclient binary to test.") 34 "The emacsclient binary to test.")
35 35
36(defmacro emacsclient-test-call-emacsclient (editor) 36(defmacro emacsclient-test-call-emacsclient (editor)
diff --git a/test/lisp/server-tests.el b/test/lisp/server-tests.el
index 444c2f99fa7..aa124f099c7 100644
--- a/test/lisp/server-tests.el
+++ b/test/lisp/server-tests.el
@@ -44,7 +44,7 @@ like that, we just skip the test.")
44(defconst server-tests/emacsclient 44(defconst server-tests/emacsclient
45 (if installation-directory 45 (if installation-directory
46 (expand-file-name "lib-src/emacsclient" installation-directory) 46 (expand-file-name "lib-src/emacsclient" installation-directory)
47 "emacsclient") 47 emacsclient-program-name)
48 "The emacsclient binary to test.") 48 "The emacsclient binary to test.")
49 49
50(defmacro server-tests/wait-until (form) 50(defmacro server-tests/wait-until (form)