aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar David Bremner <david@tethera.net>2014-05-28 21:26:27 -0300
committerGravatar David Bremner <david@tethera.net>2014-06-13 22:55:14 -0300
commit2d722bf032bbd4b08b415369e07a3c9e26f2472a (patch)
tree5903408a726b28e70605cfde1fb241d57e2d26c7 /test
parent90f9a5e65e8dab3fad0a60530d3ffc582f1b1a93 (diff)
test: use --quick when starting emacs.
At least in emacs24, this removes the "site-lisp" directories from the load path in addition to enforcing --no-site-lisp --no-init-file. This works around a slightly mysterious bug on Debian that causes test-lib.el not to load when there is cl-lib.el(c) in some site-lisp directory. It should be harmless in general since we really don't want to load any files from addon packages to emacs.
Diffstat (limited to 'test')
-rw-r--r--test/test-lib.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test-lib.sh b/test/test-lib.sh
index 8697d6a7..17deaaba 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -1081,15 +1081,14 @@ export NOTMUCH_CONFIG=$NOTMUCH_CONFIG
# Here's what we are using here:
#
-# --no-init-file Don't load users ~/.emacs
-#
-# --no-site-file Don't load the site-wide startup stuff
+# --quick Use minimal customization. This implies --no-init-file,
+# --no-site-file and (emacs 24) --no-site-lisp
#
# --directory Ensure that the local elisp sources are found
#
# --load Force loading of notmuch.el and test-lib.el
-exec ${TEST_EMACS} --no-init-file --no-site-file \
+exec ${TEST_EMACS} --quick \
--directory "$TEST_DIRECTORY/../emacs" --load notmuch.el \
--directory "$TEST_DIRECTORY" --load test-lib.el \
"\$@"